home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / windows.h < prev    next >
C/C++ Source or Header  |  1998-12-24  |  2KB  |  67 lines

  1. /* 
  2.    windows.h
  3.  
  4.    Include this file if you wish to use the Windows32 API Library
  5.  
  6.    Copyright (C) 1996 Free Software Foundation
  7.  
  8.    Author:  Scott Christley <scottc@net-community.com>
  9.    Date: 1996
  10.    
  11.    This file is part of the Windows32 API Library.
  12.  
  13.    This library is free software; you can redistribute it and/or
  14.    modify it under the terms of the GNU Library General Public
  15.    License as published by the Free Software Foundation; either
  16.    version 2 of the License, or (at your option) any later version.
  17.    
  18.    This library is distributed in the hope that it will be useful,
  19.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  21.    Library General Public License for more details.
  22.  
  23.    If you are interested in a warranty or support for this source code,
  24.    contact Scott Christley <scottc@net-community.com> for more information.
  25.    
  26.    You should have received a copy of the GNU Library General Public
  27.    License along with this library; see the file COPYING.LIB.
  28.    If not, write to the Free Software Foundation, 
  29.    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  30. */ 
  31.  
  32. #ifndef _GNU_H_WINDOWS_H
  33. #define _GNU_H_WINDOWS_H
  34.  
  35. #include <limits.h>
  36. #include <stdarg.h>
  37.  
  38. /* Base definitions */
  39. #include <Windows32/Base.h>
  40.  
  41. /* WIN32 messages */
  42. #include <Windows32/Messages.h>
  43.  
  44. /* WIN32 definitions */
  45. #include <Windows32/Defines.h>
  46.  
  47. /* WIN32 structures */
  48. #include <Windows32/Structures.h>
  49.  
  50. /* WIN32 functions */
  51. #include <Windows32/Functions.h>
  52.  
  53. /* WIN32 error codes */
  54. #include <Windows32/Errors.h>
  55.  
  56. /* Windows sockets specification version 1.1 */
  57. #ifdef Win32_Winsock
  58. #include <Windows32/Sockets.h>
  59. #endif
  60.  
  61. /* How do we get the VM page size on NT? */
  62. #ifndef vm_page_size
  63. #define vm_page_size 4096
  64. #endif
  65.  
  66. #endif /* _GNU_H_WINDOWS_H */
  67.