source: libcf/trunk/include/cf_log.h@ 66

Last change on this file since 66 was 66, checked in by cheese, 11 years ago

#1 add codec module (bin <-> hex-string)

File size: 1.1 KB
Line 
1/**
2 * @file cf_log.h
3 * @author myusgun <myusgun@gmail.com>
4 *
5 * @remark
6 * 매핑 ID 값을 이용하여 해당 로그에 기록 <br />
7 * 로그 레벨을 적용할 때도 용이하며 define 이나 enumeration 등을 활용하면 좋음
8 *
9 * @example log.c
10 */
11#ifndef __CF_LOG_H__
12#define __CF_LOG_H__
13
14#include "cf_base.h"
15
16/**
17 * 로그의 버퍼 크기를 기본 값으로 설정
18 *
19 * @see CF_Log_Open
20 */
21#define CF_LOG_BUFFER_DEFAULT -1
22
23/**
24 * 로그 기록 시 버퍼를 사용하지 않고 즉시 기록
25 *
26 * @see CF_Log_Open
27 */
28#define CF_LOG_BUFFER_NO 0
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34CF_EXPORT int
35CF_Log_Initialize (const int logPool);
36
37CF_EXPORT int
38CF_Log_Finalize (void);
39
40CF_EXPORT int
41CF_Log_Open (const int mapid,
42 const char * path,
43 const int memsize);
44
45CF_EXPORT int
46CF_Log_Close (const int mapid);
47
48CF_EXPORT int
49CF_Log_SetMT (const int mapid,
50 const CF_BOOL flag);
51
52CF_EXPORT int
53CF_Log_Write (const int mapid,
54 const char * prefix,
55 const char * fmt, ...);
56
57CF_EXPORT int
58CF_Log_Flush (const int mapid);
59
60#ifdef __cplusplus
61}
62#endif
63
64#endif // #ifndef __CF_LOG_H__
Note: See TracBrowser for help on using the repository browser.