mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-05 22:13: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
20
profile/3.3.5a-windows-386/include/bc/file/fileinfo.h
Normal file
20
profile/3.3.5a-windows-386/include/bc/file/fileinfo.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#ifndef BC_FILE_FILE_INFO_H
|
||||
#define BC_FILE_FILE_INFO_H
|
||||
|
||||
#include "bc/time/types.h"
|
||||
|
||||
DECLARE_STRUCT(Blizzard__File__FileInfo);
|
||||
|
||||
struct Blizzard__File__FileInfo {
|
||||
char* path;
|
||||
uint32_t unk04;
|
||||
int64_t size; // 08
|
||||
int32_t attributes;
|
||||
Blizzard__Time__Timestamp createTime;
|
||||
Blizzard__Time__Timestamp modTime;
|
||||
Blizzard__Time__Timestamp accessTime;
|
||||
int32_t existence;
|
||||
int32_t regularFile;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue