34 lines
638 B
C
34 lines
638 B
C
|
||
|
||
#ifndef CONFIGFILE_READ_123_INCLUDED
|
||
#define CONFIGFILE_READ_123_INCLUDED
|
||
|
||
|
||
#include "glbtypes.h"
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
/************************************************************************/
|
||
|
||
|
||
//COMTRADE文件目录,如果不存在,初始化的时候会创建
|
||
#ifdef linux
|
||
#define GOOSESMV_INI "../protect/cfg/goose_smv.txt"
|
||
#elif defined (_WIN32)
|
||
#define GOOSESMV_INI "../protect/cfg/goose_smv.txt"
|
||
#endif
|
||
|
||
ST_RET goosesmv_ini_read_intobuf( char *fileName );
|
||
|
||
int protect_crc_read_intobuf( char *fileName );
|
||
|
||
/************************************************************************/
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
|
||
#endif
|
||
|