mirror of
https://github.com/gentilkiwi/mimikatz
synced 2025-02-18 02:16:53 +00:00
16 lines
366 B
C
16 lines
366 B
C
/* Benjamin DELPY `gentilkiwi`
|
|
http://blog.gentilkiwi.com
|
|
benjamin@gentilkiwi.com
|
|
Licence : http://creativecommons.org/licenses/by/3.0/fr/
|
|
*/
|
|
#pragma once
|
|
#include "globals.h"
|
|
#include <io.h>
|
|
#include <fcntl.h>
|
|
|
|
FILE * logfile;
|
|
|
|
void kprintf(PCWCHAR format, ...);
|
|
void kprintf_inputline(PCWCHAR format, ...);
|
|
|
|
BOOL kull_m_output_file(PCWCHAR file); |