mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
a7fddf9c07
svn path=/trunk/; revision=29689
21 lines
387 B
C
21 lines
387 B
C
////////////////////////////////////////////////////////
|
|
//
|
|
// log.h
|
|
//
|
|
// Script Functions
|
|
//
|
|
//
|
|
// Klemens Friedl, 19.03.2005
|
|
// frik85@hotmail.com
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#define LOGFILE "logfile.html"
|
|
|
|
extern bool LogCreated;
|
|
|
|
void Log (const char *message);
|
|
void LogAdd (const char *message);
|