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

  1. //[ ICube_itf
  2. //+-------------------------------------------------------------------
  3. //
  4. // Interface: ICube (ib)
  5. //
  6. // Purpose: Interface for manipulating cubes
  7. //
  8. // History: 23-Nov-92 Rickhi Created
  9. //
  10. // Notes:
  11. //
  12. //--------------------------------------------------------------------
  13. [ object,
  14. uuid(00000139-0001-0008-c000-000000000046),
  15. pointer_default(unique) ]
  16. interface ICube : IUnknown
  17. {
  18. import "unknwn.idl";
  19. import "iballs.idl";
  20. HRESULT MoveCube(
  21. [in] ULONG xPos,
  22. [in] ULONG yPos);
  23. HRESULT GetCubePos(
  24. [out] ULONG *xPos,
  25. [out] ULONG *yPos);
  26. HRESULT Contains(
  27. [in] [unique] IBalls *pIFDb);
  28. HRESULT SimpleCall(
  29. [in] DWORD pidCaller,
  30. [in] DWORD tidCaller,
  31. [in] GUID lidCaller);
  32. HRESULT PrepForInputSyncCall(
  33. [in] IUnknown *pUnkIn);
  34. [input_sync]
  35. HRESULT InputSyncCall(void);
  36. }
  37. //]