parser.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00016 #ifndef __parser_h__
00017 #define __parser_h__
00018
00019 #ifdef __cplusplus
00020 extern "C"
00021 {
00022 #endif
00023
00024 #define TOKEN_MAX_KEY_SIZE 200
00025 #define TOKEN_MAX_VALUE_SIZE 200
00026
00027 #define TOKEN_TYPE_KEY 1
00028 #define TOKEN_TYPE_STRING 2
00029
00030 int LTPBundleFindValueWithKey(const char *fileName, const char *tokenKey,
00031 char *tokenValue, int tokenIndice);
00032
00033 #ifdef __cplusplus
00034 }
00035 #endif
00036
00037 #endif