Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
913 B

//[ ICube_itf
//+-------------------------------------------------------------------
//
// Interface: ICube (ib)
//
// Purpose: Interface for manipulating cubes
//
// History: 23-Nov-92 Rickhi Created
//
// Notes:
//
//--------------------------------------------------------------------
[ object,
uuid(00000139-0001-0008-c000-000000000046),
pointer_default(unique) ]
interface ICube : IUnknown
{
import "unknwn.idl";
import "iballs.idl";
HRESULT MoveCube(
[in] ULONG xPos,
[in] ULONG yPos);
HRESULT GetCubePos(
[out] ULONG *xPos,
[out] ULONG *yPos);
HRESULT Contains(
[in] [unique] IBalls *pIFDb);
HRESULT SimpleCall(
[in] DWORD pidCaller,
[in] DWORD tidCaller,
[in] GUID lidCaller);
HRESULT PrepForInputSyncCall(
[in] IUnknown *pUnkIn);
[input_sync]
HRESULT InputSyncCall(void);
}
//]