Source code of Windows XP (NT5)
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.

31 lines
1.0 KiB

  1. // Copyright 1995-1997 Microsoft Corporation. All Rights Reserved.
  2. #ifndef _CTLHELP_H_
  3. //=--------------------------------------------------------------------------=
  4. // these two tables are used to get information on sizes about data types
  5. // the first is used mostly in persistence, while the second is used for
  6. // events
  7. extern const BYTE g_rgcbDataTypeSize [];
  8. extern const BYTE g_rgcbPromotedDataTypeSize [];
  9. //=--------------------------------------------------------------------------=
  10. // misc functions
  11. short _SpecialKeyState(void);
  12. void WINAPI CopyAndAddRefObject(void *, const void *, DWORD);
  13. void WINAPI CopyOleVerb(void *, const void *, DWORD);
  14. void CleanupReflection();
  15. //=--------------------------------------------------------------------------=
  16. // little private guid we'll use to help identify our objects
  17. // {00D97180-FCF7-11ce-A09E-00AA0062BE57}
  18. //
  19. #define Data1_IControlPrv 0xd97180
  20. DEFINE_GUID(IID_IControlPrv, 0xd97180, 0xfcf7, 0x11ce, 0xa0, 0x9e, 0x0, 0xaa, 0x0, 0x62, 0xbe, 0x57);
  21. #define _CTLHELP_H_
  22. #endif // _CTLHELP_H_