| /** | |
| * This file has no copyright assigned and is placed in the Public Domain. | |
| * This file is part of the w64 mingw-runtime package. | |
| * No warranty is given; refer to the file DISCLAIMER within this package. | |
| */ | |
| extern "C" { | |
| struct _diskfree_t { | |
| unsigned total_clusters; | |
| unsigned avail_clusters; | |
| unsigned sectors_per_cluster; | |
| unsigned bytes_per_sector; | |
| }; | |
| _CRTIMP unsigned __cdecl _getdiskfree(unsigned _Drive,struct _diskfree_t *_DiskFree); | |
| void __cdecl _disable(void); | |
| void __cdecl _enable(void); | |
| } | |