mimikatz/modules/kull_m_output.h
Benjamin DELPY ebcecc3a10 [fix #107] remove _vscwprintf dependency with mimilove on Windows 2000
[credits] with his work on AD, Vincent Le Toux (@vletoux) is starring as co-author :)
[internal] DRSR RPC
[fix] dcsync export as CSV without junk chars between username and NTLM hash
2017-11-06 03:37:36 +01:00

23 lines
548 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;
#ifndef MIMIKATZ_W2000_SUPPORT
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();