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.
31 lines
840 B
31 lines
840 B
//HEADER_GOES_HERE |
|
#ifndef __LOGGING_H__ |
|
#define __LOGGING_H__ |
|
|
|
extern int log_cpp_init_value; // weak |
|
extern CHAR FileName[260]; // idb |
|
extern char log_buffer[388]; |
|
extern LPCVOID lpAddress; // idb |
|
extern DWORD nNumberOfBytesToWrite; // idb |
|
|
|
void __cdecl log_cpp_init_1(); |
|
void __cdecl log_cpp_init_2(); |
|
void __cdecl log_init_mutex(); |
|
void __cdecl j_log_cleanup_mutex(); |
|
void __cdecl log_cleanup_mutex(); |
|
void __cdecl log_flush(bool force_close); |
|
void *__cdecl log_create(); // should be HANDLE |
|
void __fastcall log_get_version(VS_FIXEDFILEINFO *file_info); |
|
void log_printf(const char *pszFmt, ...); // LogMessage |
|
void __cdecl log_dump_computer_info(); |
|
|
|
/* rdata */ |
|
|
|
extern const int log_inf; // weak |
|
|
|
/* data */ |
|
|
|
extern int log_not_created; // weak |
|
extern HANDLE log_file; // idb |
|
|
|
#endif /* __LOGGING_H__ */
|
|
|