home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / fed0217s.zip / include / pmproc.h < prev    next >
C/C++ Source or Header  |  1998-04-05  |  829b  |  33 lines

  1. /*
  2. ** Module   :PMPROC.H
  3. ** Abstract :
  4. **
  5. ** Copyright (C) Sergey I. Yevtushenko
  6. **
  7. ** Log: Sun  05/04/1998 Created
  8. **
  9. */
  10.  
  11. #define INCL_BASE
  12. #define INCL_WIN
  13. #define INCL_VIO
  14. #define INCL_KBD
  15. #include <os2.h>
  16.  
  17. #ifndef __PMPROC_H
  18. #define __PMPROC_H
  19.  
  20. extern BOOL (APIENTRY *_inCloseClipbrd)(HAB);
  21. extern HMQ  (APIENTRY *_inCreateMsgQueue)(HAB, LONG);
  22. extern BOOL (APIENTRY *_inDestroyMsgQueue)(HMQ);
  23. extern BOOL (APIENTRY *_inEmptyClipbrd)(HAB);
  24. extern HAB  (APIENTRY *_inInitialize)(ULONG);
  25. extern BOOL (APIENTRY *_inOpenClipbrd)(HAB);
  26. extern ULONG(APIENTRY *_inQueryClipbrdData)(HAB, ULONG);
  27. extern BOOL (APIENTRY *_inQueryClipbrdFmtInfo)(HAB, ULONG, PULONG);
  28. extern BOOL (APIENTRY *_inSetClipbrdData)(HAB, ULONG, ULONG, ULONG);
  29. extern BOOL (APIENTRY *_inTerminate)(HAB);
  30.  
  31. #endif  /*__PMPROC_H*/
  32.  
  33.