public: redeclare ParseFile flags to be exactly same as in exported API headers
This commit is contained in:
parent
621399c49b
commit
e5e1570aed
1 changed files with 4 additions and 2 deletions
|
@ -38,8 +38,10 @@ enum
|
||||||
TIME_FILENAME,
|
TIME_FILENAME,
|
||||||
};
|
};
|
||||||
|
|
||||||
#define PFILE_IGNOREBRACKET BIT( 0 )
|
// a1ba: not using BIT macro, so flags can be copypasted into
|
||||||
#define PFILE_HANDLECOLON BIT( 1 )
|
// exported APIs headers and will get nice warning in case of changing values
|
||||||
|
#define PFILE_IGNOREBRACKET (1<<0)
|
||||||
|
#define PFILE_HANDLECOLON (1<<1)
|
||||||
|
|
||||||
//
|
//
|
||||||
// crtlib.c
|
// crtlib.c
|
||||||
|
|
Loading…
Add table
Reference in a new issue