home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 May / PCWorld_2001-05_cd.bin / Software / Vyzkuste / devc / _SETUP.5 / Group3 / dos.h < prev    next >
C/C++ Source or Header  |  1999-11-07  |  3KB  |  124 lines

  1. /*
  2.  * dos.h
  3.  *
  4.  * DOS-specific functions and structures.
  5.  *
  6.  * This file is part of the Mingw32 package.
  7.  *
  8.  * Contributors:
  9.  *  Created by J.J. van der Heijden <J.J.vanderHeijden@student.utwente.nl>
  10.  *
  11.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  12.  *
  13.  *  This source code is offered for use in the public domain. You may
  14.  *  use, modify or distribute it freely.
  15.  *
  16.  *  This code is distributed in the hope that it will be useful but
  17.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  18.  *  DISCLAMED. This includes but is not limited to warranties of
  19.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  20.  *
  21.  * $Revision: 1.5 $
  22.  * $Author: khan $
  23.  * $Date: 1999/07/16 01:59:23 $
  24.  *
  25.  */
  26.  
  27. #ifndef    __STRICT_ANSI__
  28.  
  29. #ifndef    _DOS_H_
  30. #define    _DOS_H_
  31.  
  32. /* All the headers include this file. */
  33. #include <_mingw.h>
  34.  
  35. #define __need_wchar_t
  36. #ifndef RC_INVOKED
  37. #include <stddef.h>
  38. #endif    /* Not RC_INVOKED */
  39.  
  40. /* For DOS file attributes */
  41. #include <io.h>
  42.  
  43. #ifndef RC_INVOKED
  44.  
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48.  
  49. #ifndef __DECLSPEC_SUPPORTED
  50.  
  51. extern char** __imp__pgmptr_dll;
  52. #define _pgmptr (*__imp__pgmptr_dll)
  53.  
  54. /* Wide character equivalent */
  55. extern wchar_t** __imp_wpgmptr_dll;
  56. #define _wpgmptr (*__imp__wpgmptr_dll)
  57.  
  58. extern unsigned int *__imp__basemajor_dll;
  59. extern unsigned int *__imp__baseminor_dll;
  60. extern unsigned int *__imp__baseversion_dll;
  61. extern unsigned int *__imp__osmajor_dll;
  62. extern unsigned int *__imp__osminor_dll;
  63. extern unsigned int *__imp__osmode_dll;
  64.  
  65. #define _basemajor (*__imp__basemajor_dll)
  66. #define _baseminor (*__imp__baseminor_dll)
  67. #define _baseversion (*__imp__baseversion_dll)
  68. #define _osmajor (*__imp__osmajor_dll)
  69. #define _osminor (*__imp__osminor_dll)
  70. #define _osmode (*__imp__osmode_dll)
  71.  
  72. #else /* __DECLSPEC_SUPPORTED */
  73.  
  74. __MINGW_IMPORT char* _pgmptr_dll;
  75. #define _pgmptr _pgmptr_dll
  76.  
  77. /* Wide character equivalent */
  78. __MINGW_IMPORT wchar_t* _wpgmptr_dll;
  79. #define _wpgmptr _wpgmptr_dll
  80.  
  81. __MINGW_IMPORT unsigned int _basemajor_dll;
  82. __MINGW_IMPORT unsigned int _baseminor_dll;
  83. __MINGW_IMPORT unsigned int _baseversion_dll;
  84. __MINGW_IMPORT unsigned int _osmajor_dll;
  85. __MINGW_IMPORT unsigned int _osminor_dll;
  86. __MINGW_IMPORT unsigned int _osmode_dll;
  87.  
  88. #define _basemajor _basemajor_dll
  89. #define _baseminor _baseminor_dll
  90. #define _baseversion _baseversion_dll
  91. #define _osmajor _osmajor_dll
  92. #define _osminor _osminor_dll
  93. #define _osmode _osmode_dll
  94.  
  95. #endif /* __DECLSPEC_SUPPORTED */
  96.  
  97. #ifndef _DISKFREE_T_DEFINED
  98. /* needed by _getdiskfree (also in direct.h) */
  99. struct _diskfree_t {
  100.     unsigned total_clusters;
  101.     unsigned avail_clusters;
  102.     unsigned sectors_per_cluster;
  103.     unsigned bytes_per_sector;
  104. };
  105. #define _DISKFREE_T_DEFINED
  106. #endif  
  107.  
  108. unsigned _getdiskfree (unsigned, struct _diskfree_t *);
  109.  
  110. #ifndef    _NO_OLDNAMES
  111. # define diskfree_t _diskfree_t
  112. #endif
  113.  
  114. #ifdef __cplusplus
  115. }
  116. #endif
  117.  
  118. #endif    /* Not RC_INVOKED */
  119.  
  120. #endif    /* Not _DOS_H_ */
  121.  
  122. #endif    /* Not __STRICT_ANSI__ */
  123.  
  124.