2014-04-06 18:31:53 +00:00
|
|
|
/* Benjamin DELPY `gentilkiwi`
|
|
|
|
http://blog.gentilkiwi.com
|
|
|
|
benjamin@gentilkiwi.com
|
2015-08-25 09:19:01 +00:00
|
|
|
Licence : https://creativecommons.org/licenses/by/4.0/
|
2014-04-06 18:31:53 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "globals.h"
|
|
|
|
#include <io.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
FILE * logfile;
|
2014-05-04 23:24:54 +00:00
|
|
|
#ifdef _WINDLL
|
|
|
|
wchar_t * outputBuffer;
|
|
|
|
size_t outputBufferElements, outputBufferElementsPosition;
|
|
|
|
#endif
|
2014-04-06 18:31:53 +00:00
|
|
|
|
|
|
|
void kprintf(PCWCHAR format, ...);
|
|
|
|
void kprintf_inputline(PCWCHAR format, ...);
|
|
|
|
|
2014-12-13 18:52:00 +00:00
|
|
|
BOOL kull_m_output_file(PCWCHAR file);
|
|
|
|
|
|
|
|
void kull_m_output_init();
|
|
|
|
void kull_m_output_clean();
|