repo.or.cz
/
opsoft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes
[opsoft.git]
/
silentbob
/
include
/
log.h
blob
91336dca1e53cf9057b4567334e6c70765a6a898
1
/*
2
* (c) Oleg Puchinin 2006
3
* graycardinalster@gmail.com
4
*
5
*/
6
7
#ifndef DEFINE_LOG_H
8
#define DEFINE_LOG_H
9
10
#ifndef DEFINE_THE_TT_H
11
struct
tt_state_t
;
12
#endif
13
14
namespace
Log
{
15
int
init
();
16
int
globals
(
char
*
file
,
int
type
,
int
size
);
17
int
tt
(
tt_state_t
*
tt
);
18
int
write
(
char
*
logName
,
char
*
logStr
);
19
int
done
(
char
*
logName
);
20
}
21
22
#endif
23