~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/include/msvcrt/dos.h

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * DOS definitions
  3  *
  4  * Derived from the mingw header written by Colin Peters.
  5  * Modified for Wine use by Jon Griffiths and Francois Gouget.
  6  * This file is in the public domain.
  7  */
  8 #ifndef __WINE_DOS_H
  9 #define __WINE_DOS_H
 10 
 11 #include <crtdefs.h>
 12 
 13 #include <pshpack8.h>
 14 
 15 /* The following are also defined in io.h */
 16 #define _A_NORMAL 0x00000000
 17 #define _A_RDONLY 0x00000001
 18 #define _A_HIDDEN 0x00000002
 19 #define _A_SYSTEM 0x00000004
 20 #define _A_VOLID  0x00000008
 21 #define _A_SUBDIR 0x00000010
 22 #define _A_ARCH   0x00000020
 23 
 24 #ifndef _DISKFREE_T_DEFINED
 25 #define _DISKFREE_T_DEFINED
 26 struct _diskfree_t {
 27   unsigned int total_clusters;
 28   unsigned int avail_clusters;
 29   unsigned int sectors_per_cluster;
 30   unsigned int bytes_per_sector;
 31 };
 32 #endif /* _DISKFREE_T_DEFINED */
 33 
 34 
 35 #ifdef __cplusplus
 36 extern "C" {
 37 #endif
 38 
 39 unsigned int __cdecl _getdiskfree(unsigned int, struct _diskfree_t *);
 40 
 41 #ifdef __cplusplus
 42 }
 43 #endif
 44 
 45 
 46 #define diskfree_t _diskfree_t
 47 
 48 #include <poppack.h>
 49 
 50 #endif /* __WINE_DOS_H */
 51 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.