1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-03-30 22:19:17 +02:00
2022-04-26 23:49:04 +01:00

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