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:
terminx 2018-10-07 05:21:24 +00:00
parent 6d7e0518cf
commit 9ae3a3ecb8

View file

@ -1116,11 +1116,11 @@ extern "C" {
struct Bdirent
{
uint16_t namlen;
char *name;
uint32_t mode;
uint32_t size;
uint32_t mtime;
uint16_t namlen;
};
typedef void BDIR;