source: trunk/gsinstaller/DiskSpace.h@ 11663

Last change on this file since 11663 was 11663, checked in by mdewsnip, 18 years ago

Fixed up the line endings.

  • Property svn:keywords set to Author Date Id Revision
File size: 404 bytes
Line 
1#ifndef _DISKSPACE_H_
2#define _DISKSPACE_H_
3#include <windows.h>
4
5class DiskSpace {
6private:
7 DWORD sectorsPerCluster;
8 DWORD bytesPerSector;
9 DWORD freeClusters;
10 BOOL initialised;
11protected:
12public:
13 DiskSpace(const char *root);
14 int fileSpace(int fileSize);
15 int fileClusters(int fileSize);
16 BOOL initialisedOk();
17 unsigned long totalFreeSpace();
18};
19
20#endif
Note: See TracBrowser for help on using the repository browser.