mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-03-30 22:19:17 +02:00
11 lines
258 B
C
11 lines
258 B
C
#ifndef _METERPRETER_COMMON_LOGGING_H
|
|
#define _METERPRETER_COMMON_LOGGING_H
|
|
|
|
HANDLE init_logging(wchar_t* filePath);
|
|
HANDLE get_logging_context();
|
|
HANDLE get_lock();
|
|
void set_logging_context(HANDLE ctx, HANDLE lock1);
|
|
void log_to_file(char* buffer);
|
|
|
|
#endif
|