mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-05 14:03:51 +00:00
feat(build): implement Clangd support && add lua symbols
This commit is contained in:
parent
6163593844
commit
e79ee08905
78 changed files with 399 additions and 5445 deletions
|
|
@ -4,17 +4,18 @@
|
|||
DECLARE_ENUM(Blizzard__File__Mode);
|
||||
|
||||
enum Blizzard__File__Mode {
|
||||
read = 0x0001,
|
||||
write = 0x0002,
|
||||
shareread = 0x0004,
|
||||
sharewrite = 0x0008,
|
||||
nocache = 0x0040,
|
||||
temporary = 0x0080,
|
||||
truncate = 0x0100,
|
||||
append = 0x0200,
|
||||
create = 0x0400,
|
||||
mustnotexist = 0x0800,
|
||||
mustexist = 0x1000
|
||||
read = 0x0001,
|
||||
write = 0x0002,
|
||||
shareread = 0x0004,
|
||||
sharewrite = 0x0008,
|
||||
async = 0x0020, // confirmed
|
||||
nocache = 0x0040, // confirmed
|
||||
temp = 0x0080, // confirmed
|
||||
truncate = 0x0100, // confirmed
|
||||
append = 0x0200, // confirmed
|
||||
recreate = 0x0400, // confirmed
|
||||
cantexist = 0x0800,
|
||||
mustexist = 0x1000
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue