home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwphescr.zip / XWPH0208.ZIP / include / helpers / resh.h < prev    next >
C/C++ Source or Header  |  2001-03-03  |  1KB  |  41 lines

  1.  
  2. /*
  3.  *      Copyright (C) 2000 Christoph Schulte Mönting.
  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, in version 2 as it comes in the COPYING
  8.  *      file of this distribution.
  9.  *      This program is distributed in the hope that it will be useful,
  10.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12.  *      GNU General Public License for more details.
  13.  */
  14.  
  15. /*
  16.  *@@sourcefile resh.h:
  17.  *      header file for resh.c. See remarks there.
  18.  */
  19.  
  20. #ifndef RESH_H_INCLUDED
  21. #define RESH_H_INCLUDED
  22.  
  23. #include <os2.h>
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. APIRET reshWriteResourceToFile(HMODULE hmod,
  30.                                ULONG  ulTypeID,
  31.                                ULONG  ulNameID,
  32.                                const char *pcszFilename,
  33.                                PULONG pulBytesWritten);
  34.  
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38.  
  39. #endif /* not RESH_H_INCLUDED */
  40.  
  41.