home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2000 January / PCW0001.ISO / software / hw / pc2000 / junkbust.exe / w32log.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-21  |  450 b   |  18 lines

  1. /* Public functions for creating and destroying the log window
  2.  *
  3.  * Written and copyright 1999 Adam Lock <locka@iol.ie>
  4.  *
  5.  * Distributed under the GNU General Public License; see the README file.
  6.  * This code comes with NO WARRANTY.
  7.  */
  8. #ifndef W32LOG_H
  9. #define W32LOG_H
  10.  
  11. extern HWND g_hwndLogFrame;
  12.  
  13. int LogPutString(const char *pszText);
  14. BOOL InitLogWindow(void);
  15. void TermLogWindow(void);
  16. void ShowLogWindow(BOOL bShow);
  17.  
  18. #endif