File: logtools.h

package info (click to toggle)
logtools 0.13e%2Bnmu3
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 324 kB
  • sloc: cpp: 1,110; sh: 116; makefile: 78
file content (20 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef LOGTOOLS_H
#define LOGTOOLS_H

#define VERSION "0.13e"

typedef const char * PCCHAR;
typedef char * PCHAR;
typedef PCHAR const CPCHAR;
typedef PCCHAR const CPCCHAR;
typedef void * PVOID;
typedef PVOID const CPVOID;
typedef const CPVOID CPCVOID;
typedef FILE *PFILE;

#define ERR_PARAM 1
#define ERR_INPUT 2
#define ERR_OUTPUT 3
#define ERR_SPEC 4

#endif