home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / mb3jr12.zip / src.zip / common.h
C/C++ Source or Header  |  1998-03-17  |  583b  |  32 lines

  1. //
  2. #ifndef _MB3_COMMON_H__
  3. #define _MB3_COMMON_H__
  4.  
  5. #define INCL_WINATOM
  6. #include <os2.h>
  7.  
  8. /** Encapsulate the atomic messages used.
  9.     Messages posted from hook in DLL to window.
  10. */
  11. typedef struct {
  12.     ULONG    ulSz;
  13.     ATOM    wmu_ShowWinList;
  14.     CHAR    pszShowWinList[ 41 ];
  15.     ATOM     wmu_DoubleClick;
  16.     CHAR    pszDoubleClick[ 41 ];
  17.     BOOL    fActivated;
  18. } GLOBAL, *PGLOBAL;
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.     PGLOBAL EXPENTRY GetGloabls();
  24.     BOOL EXPENTRY eMBeeInitHook( HWND hwndClient );
  25.     BOOL EXPENTRY   eMBeeHookOff();
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30.  
  31. #endif
  32.