home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pmtools.zip / pmtools.h < prev   
C/C++ Source or Header  |  1997-08-26  |  870b  |  26 lines

  1. #ifndef __PMTools_H
  2. #  define __PMTools_H
  3.  
  4. #  include <os2def.h>
  5.  
  6. #  ifdef __cplusplus
  7.    extern "C" {
  8. #  endif
  9.  
  10.    extern void     CenterWindow( HWND hwnd );
  11.    extern HWND     CreateHelp( HWND hwndFrame, PSZ pszFileName, HMODULE hmod, USHORT usTableID, PSZ pszWindowTitle );
  12.    extern void     DestroyHelp( HWND hwndHelp );
  13.    extern void     SetButtonIcon( HWND hwndButton, HPOINTER hicon );
  14.    extern HWND     LaunchApplication( HWND hwnd, PSZ pszProgram, PSZ pszOptions, PSZ pszDirectory );
  15.    extern HMTX     OneInstance( PSZ pszSemName, BOOL fSwitch );
  16.    extern HWND     LoadMenu( HWND hwnd,HMODULE hmod, USHORT usResID );
  17.    extern HPOINTER LoadIcon( HWND hwnd, HMODULE hmod, USHORT usResID );
  18.    extern HACCEL   LoadAccelerator( HWND hwnd, HMODULE hmod, USHORT usResID );
  19.  
  20. #  ifdef __cplusplus
  21.    }
  22. #  endif
  23.  
  24. #endif /* __PMTools_H */
  25.  
  26.