//--------------------------------------------------------------
//
//  WIN32API.H 
//
//  This header file contains Windows API type and 
//  constant declarations for calls to the Win32 API 
//  from dB2K. Function prototypes are in 
//  WIN32API.PRG.
// 
//  Dependencies: WINNT.H
//                WINBASE.H
//                WINGDI.H
//                WINUSER.H
//                WINMISC.H
//                WINREG.H             
//                WIN32API.PRG
//
//  dBASE Samples Group
//
//  $Revision:   1.4  $
//
//  Copyright (c) 1997-1998, Borland International, Inc. 
//  Copyright (c) 2000, dBASE, Inc.
//  All rights reserved.
//
//---------------------------------------------------------------

#ifndef WIN32API_H
   #define WIN32API_H

   #include <WINDEF.H>

   //
   //  SECTION INCLUSION.
   //
   //
   //  These can be used to include one or more header files or 
   //  sections of header files. 
   //
   //  Note: Do to compilation restrictions, not all header
   //  files can be included in a single source file.
   //
   //
   //  WIN32API_MESSAGES_H    -  Include messaging constants
   //                            in WINUSER.H
   //  WIN32API_MISC_H        -  Include the WINMISC.H file
   //  WIN32API_BASE_H        -  Include the WINBASE.H file
   //  WIN32API_GDI_H         -  Include the WINGDI.H file
   //  WIN32API_NT_H          -  Include the WINNT.H file
   //  WIN32API_REG_H         -  Include the WINREG.H file
   //  WIN32API_USER_H        -  Include the WINUSER.H file
   //
   //  


   #ifdef WIN32API_NT_H
      #include <WINNT.H>
   #else
      // WINNT.H and WINREG.H are mutually exclusive
      #ifdef WIN32API_REG_H
          #include <WINREG.H>
      #endif
   #endif


   #ifdef WIN32API_BASE_H
      #include <WINBASE.H>
   #endif

   #ifdef WIN32API_GDI_H
      #include <WINGDI.H>
   #endif
   
   #ifdef WIN32API_USER_H
      #include <WINUSER.H>
   #endif

   #ifndef WIN32API_MISC_H
      #include <WINMISC.H>
   #endif
   DO :include:WIN32API.PRG

#endif // WIN32API_H
