mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-06 06:23:51 +00:00
feat(profile): refactor lua, bc code
This commit is contained in:
parent
e79ee08905
commit
37db5336e4
40 changed files with 3424 additions and 0 deletions
33
profile/3.3.5a-windows-386/include/bc/file/infomask.h
Normal file
33
profile/3.3.5a-windows-386/include/bc/file/infomask.h
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#ifndef BC_FILE_INFO_MASK_H
|
||||
#define BC_FILE_INFO_MASK_H
|
||||
|
||||
#if defined(BITFIELDS_SUPPORTED)
|
||||
|
||||
DECLARE_UNION(Blizzard__File__FileInfoMask);
|
||||
|
||||
union Blizzard__File__FileInfoMask {
|
||||
struct {
|
||||
uint32_t path : 1;
|
||||
uint32_t size : 1;
|
||||
uint32_t attributes : 1;
|
||||
uint32_t createTime : 1;
|
||||
uint32_t modTime : 1;
|
||||
uint32_t accessTime : 1;
|
||||
uint32_t existence : 1;
|
||||
uint32_t regularFile : 1;
|
||||
uint32_t pad : 24;
|
||||
};
|
||||
uint32_t all;
|
||||
};
|
||||
|
||||
#else
|
||||
|
||||
DECLARE_STRUCT(Blizzard__File__FileInfoMask);
|
||||
|
||||
struct Blizzard__File__FileInfoMask {
|
||||
uint32_t all;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue