mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
615 B
23 lines
615 B
/* xx_debug\xx_proto.h -- prototypes for routines private to XX_DEBUG. */
|
|
/* Copyright (c) 1992-1994, Jeffery L Hostetler, Inc., All Rights Reserved. */
|
|
|
|
#ifndef _H_XX_DEBUG_XX_PROTO_H_
|
|
#define _H_XX_DEBUG_XX_PROTO_H_
|
|
|
|
#ifdef WIN32
|
|
void xx_disable_console(void);
|
|
void xx_enable_console(void);
|
|
void xx_write_console(LPCTSTR msg);
|
|
#endif /* WIN32 */
|
|
|
|
void xx_open_logfile(void);
|
|
void xx_close_logfile(void);
|
|
#ifdef WIN32
|
|
void xx_get_append_pathname(HWND hDlg);
|
|
void xx_get_new_pathname(HWND hDlg);
|
|
#endif /* WIN32 */
|
|
void xx_logfile_error(void);
|
|
|
|
void xx_InitFromEnvironment(void);
|
|
|
|
#endif/*_H_XX_DEBUG_XX_PROTO_H_*/
|