home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / dos.h < prev    next >
C/C++ Source or Header  |  1998-12-24  |  2KB  |  75 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.2 $
  22.  * $Author: colin $
  23.  * $Date: 1998/01/26 04:45:56 $
  24.  *
  25.  */
  26.  
  27. #ifndef    __STRICT_ANSI__
  28.  
  29. #ifndef    _DOS_H_
  30. #define    _DOS_H_
  31.  
  32. #define __need_wchar_t
  33. #include <stddef.h>
  34.  
  35. /* For DOS file attributes */
  36. #include <dir.h>
  37.  
  38. #ifndef RC_INVOKED
  39.  
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43.  
  44. extern char** __imp__pgmptr_dll;
  45. #define _pgmptr (*__imp__pgmptr_dll)
  46.  
  47. /* Wide character equivalent */
  48. extern wchar_t** __imp_wpgmptr_dll;
  49. #define _wpgmptr (*__imp__wpgmptr_dll)
  50.  
  51. extern unsigned int *__imp__basemajor__dll;
  52. extern unsigned int *__imp__baseminor__dll;
  53. extern unsigned int *__imp__baseversion__dll;
  54. extern unsigned int *__imp__osmajor_dll;
  55. extern unsigned int *__imp__osminor_dll;
  56. extern unsigned int *__imp__osmode_dll;
  57.  
  58. #define _basemajor (*__imp__basemajor_dll)
  59. #define _baseminor (*__imp__baseminor_dll)
  60. #define _baseversion (*__imp__baseversion_dll)
  61. #define _osmajor (*__imp__osmajor_dll)
  62. #define _osminor (*__imp__osminor_dll)
  63. #define _osmode (*__imp__osmode_dll)
  64.  
  65. #ifdef __cplusplus
  66. }
  67. #endif
  68.  
  69. #endif    /* Not RC_INVOKED */
  70.  
  71. #endif    /* Not _DOS_H_ */
  72.  
  73. #endif    /* Not __STRICT_ANSI__ */
  74.  
  75.