Move GetDiskFreeEx implementation in DJGPP to another file as some compilers try to index it's include files.

This commit is contained in:
2021-04-11 00:36:41 +01:00
parent 341fc84ab1
commit d57cc3a3ce
4 changed files with 78 additions and 43 deletions

View File

@@ -75,6 +75,10 @@ typedef struct diskfree_ex_t
unsigned int _dos_getdiskfree_ex(unsigned int drive, struct diskfree_ex_t* diskspace);
#ifdef __DJGPP__
unsigned int _djgpp_getdiskfree_ex(unsigned int drive, struct diskfree_ex_t* diskspace);
#endif
#if defined(__WATCOMC__)
#if __WATCOMC__ >= 1100
#pragma pack(__pop)