mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-10 23:27:53 +00:00
public: redeclare ParseFile flags to be exactly same as in exported API headers
This commit is contained in:
parent
621399c49b
commit
e5e1570aed
@ -38,8 +38,10 @@ enum
|
||||
TIME_FILENAME,
|
||||
};
|
||||
|
||||
#define PFILE_IGNOREBRACKET BIT( 0 )
|
||||
#define PFILE_HANDLECOLON BIT( 1 )
|
||||
// a1ba: not using BIT macro, so flags can be copypasted into
|
||||
// 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
|
||||
|
Loading…
Reference in New Issue
Block a user