windows-nt/Source/XPSP1/NT/com/oleutest/balls/idl/iballs.idl
2020-09-26 16:20:57 +08:00

48 lines
855 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//[ IBalls_itf
//+-------------------------------------------------------------------
//
// Interface: IBalls (ib)
//
// Purpose: Interface for manipulating balls
//
// History: 23-Nov-92 Rickhi Created
//
// Notes:
//
//--------------------------------------------------------------------
[ object,
uuid(00000138-0001-0008-C000-000000000046),
pointer_default(unique) ]
interface IBalls : IUnknown
{
import "unknwn.idl";
import "icube.idl";
HRESULT MoveBall(
[in] ULONG xPos,
[in] ULONG yPos);
HRESULT GetBallPos(
[out] ULONG *xPos,
[out] ULONG *yPos);
HRESULT IsOverLapped(
[in] [unique] IBalls *pIFDb);
HRESULT IsContainedIn(
[in] [unique] ICube *pIFDc);
HRESULT Clone(
[out] IBalls **ppIFDb);
HRESULT Echo(
[in] [unique] IUnknown *pIFDIn,
[out] IUnknown **ppIFDOut);
}
//]