mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-15 13:41:33 +01: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