blob: 0f8b6d193e6f365828b6572020eb33d35e8b0337 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef __EVIL_PRIVATE_H__
#define __EVIL_PRIVATE_H__
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __GNUC__
# if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
# define EVIL_UNUSED __attribute__ ((__unused__))
# else
# define EVIL_UNUSED
# endif
#endif
long _evil_systemtime_to_time(SYSTEMTIME st);
void _evil_error_display(const char *fct, LONG res);
void _evil_last_error_display(const char *fct);
#ifdef __cplusplus
}
#endif
#endif /* __EVIL_PRIVATE_H__ */
|