Commit 81b855e0 authored by unknown's avatar unknown

syntax fix

parent 2d6646e2
......@@ -20,7 +20,7 @@
#define PARSE_FILE_TIMESTAMPLENGTH 19
typedef enum {
enum file_opt_type {
FILE_OPTIONS_STRING, /* String (LEX_STRING) */
FILE_OPTIONS_ESTRING, /* Escaped string (LEX_STRING) */
FILE_OPTIONS_ULONGLONG, /* ulonglong parapeter (ulonglong) */
......@@ -28,13 +28,13 @@ typedef enum {
FILE_OPTIONS_TIMESTAMP, /* timestamp (LEX_STRING have to be
allocated with length 20 (19+1) */
FILE_OPTIONS_STRLIST /* list of strings (List<char*>) */
} file_opt_type;
};
struct File_option
{
LEX_STRING name; /* Name of the option */
int offset; /* offset to base address of value */
enum file_opt_type type; /* Option type */
int offset; /* offset to base address of value */
file_opt_type type; /* Option type */
};
class File_parser;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment