mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
22 lines
408 B
C
22 lines
408 B
C
|
////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// log.h
|
||
|
//
|
||
|
// Script Functions
|
||
|
//
|
||
|
//
|
||
|
// Klemens Friedl, 19.03.2005
|
||
|
// frik85@hotmail.com
|
||
|
//
|
||
|
////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#define LOGFILE "packmgr.log"
|
||
|
|
||
|
extern bool LogCreated;
|
||
|
|
||
|
void Log (const char *message);
|
||
|
void LogAdd (const char *message);
|