commCPU_SUPV/code/user/inc/configfile_read.h
2025-04-30 16:24:29 +08:00

34 lines
638 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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