mimikatz/modules/kull_m_output.h
Benjamin DELPY b4f96ccb6c mimikatz 2.1.1 (rpc/service/process)
[new] RPC support (client & server, multi users)
[new] Windows service support
[new] token::elevate can run process with impersonate token (when enough privileges and without interactions)
[new] process::run
[new] standard::hostname
2017-03-19 17:03:54 +02:00

23 lines
536 B
C

/* Benjamin DELPY `gentilkiwi`
http://blog.gentilkiwi.com
benjamin@gentilkiwi.com
Licence : https://creativecommons.org/licenses/by/4.0/
*/
#pragma once
#include "globals.h"
#include <io.h>
#include <fcntl.h>
FILE * logfile;
//#ifdef _WINDLL
wchar_t * outputBuffer;
size_t outputBufferElements, outputBufferElementsPosition;
//#endif
void kprintf(PCWCHAR format, ...);
void kprintf_inputline(PCWCHAR format, ...);
BOOL kull_m_output_file(PCWCHAR file);
void kull_m_output_init();
void kull_m_output_clean();