mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 03:00:38 +00:00
Slightly reorganize Bdirent struct for efficiency. Despite being "Bdirent", this struct in no way matches the system provided dirent struct.
git-svn-id: https://svn.eduke32.com/eduke32@7016 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6d7e0518cf
commit
9ae3a3ecb8
1 changed files with 1 additions and 1 deletions
|
@ -1116,11 +1116,11 @@ extern "C" {
|
||||||
|
|
||||||
struct Bdirent
|
struct Bdirent
|
||||||
{
|
{
|
||||||
uint16_t namlen;
|
|
||||||
char *name;
|
char *name;
|
||||||
uint32_t mode;
|
uint32_t mode;
|
||||||
uint32_t size;
|
uint32_t size;
|
||||||
uint32_t mtime;
|
uint32_t mtime;
|
||||||
|
uint16_t namlen;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef void BDIR;
|
typedef void BDIR;
|
||||||
|
|
Loading…
Reference in a new issue