home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / pmp016.zip / pmpause.h < prev    next >
C/C++ Source or Header  |  1998-01-13  |  1KB  |  42 lines

  1. /* PMPAUSE -- header file to define functions, etc.
  2.  *
  3.  * Copyright Ewen McNeill <ewen@naos.co.nz>, 1997. 
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *---------------------------------------------------------------------------
  20.  * $Id: pmpause.h 0.3 1998/01/13 02:18:59 ewen Exp $
  21.  */
  22.  
  23. #ifndef PMPAUSE_H
  24. #define PMPAUSE_H $Version:$
  25.  
  26. #if    defined(__BORLANDC__)
  27. #define EXPORT _export
  28. #elif  defined(__EMX__)
  29. #define EXPORT
  30. #else
  31. #define EXPORT _Export
  32. #endif
  33.  
  34. #define DLLNAME "pmpdll.dll"
  35.  
  36. unsigned long EXPENTRY PMPauseGetCount(void);
  37. void          EXPENTRY PMPauseClearCount(void);
  38. BOOL          EXPENTRY PMPauseInit(HWND window);
  39. BOOL          EXPENTRY PMPauseKill(void);
  40.  
  41. #endif
  42.