home *** CD-ROM | disk | FTP | other *** search
- /* Public functions for creating and destroying the log window
- *
- * Written and copyright 1999 Adam Lock <locka@iol.ie>
- *
- * Distributed under the GNU General Public License; see the README file.
- * This code comes with NO WARRANTY.
- */
- #ifndef W32LOG_H
- #define W32LOG_H
-
- extern HWND g_hwndLogFrame;
-
- int LogPutString(const char *pszText);
- BOOL InitLogWindow(void);
- void TermLogWindow(void);
- void ShowLogWindow(BOOL bShow);
-
- #endif