Browse Source

public: redeclare ParseFile flags to be exactly same as in exported API headers

pull/2/head
Alibek Omarov 3 years ago committed by a1batross
parent
commit
e5e1570aed
  1. 6
      public/crtlib.h

6
public/crtlib.h

@ -38,8 +38,10 @@ enum @@ -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…
Cancel
Save