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.

34 lines
637 B

  1. /*
  2. * dataobj.hpp - IDataObject implementation description.
  3. */
  4. #ifdef __cplusplus
  5. extern "C" { /* Assume C declarations for C++. */
  6. #endif /* __cplusplus */
  7. /* Prototypes
  8. *************/
  9. // dataobj.cpp
  10. #define InitDataObjectModule() RegisterClipboardFormats()
  11. extern BOOL RegisterClipboardFormats(void);
  12. extern void ExitDataObjectModule(void);
  13. /* Global Variables
  14. *******************/
  15. // dataobj.cpp
  16. extern UINT g_cfURL;
  17. extern UINT g_cfFileGroupDescriptor;
  18. extern UINT g_cfFileContents;
  19. #ifdef __cplusplus
  20. } /* End of extern "C" {. */
  21. #endif /* __cplusplus */