/*DDK*************************************************************************/
/* */
/* COPYRIGHT Copyright (C) 1992 IBM Corporation */
/* */
/* The following IBM OS/2 source code is provided to you solely for */
/* the purpose of assisting you in your development of OS/2 device */
/* drivers. You may use this code in accordance with the IBM License */
/* Agreement provided in the IBM Developer Connection Device Driver */
/* Source Kit for OS/2. This Copyright statement may not be removed. */
/* */
/*****************************************************************************/
/*static char *SCCSID = "@(#)os2.h 6.3 91/05/26";*/
/****************************** Module Header ******************************\
*
*
* Module Name: OS2.H
*
* This is the top level include file that includes all the files necessary
* for writing an OS/2 application.
*
\***************************************************************************/
#define OS2_INCLUDED
#if !(defined(INCL_32) || defined(INCL_16))
#ifdef M_I386
#define INCL_32
#else /* not M_I386 */
#define INCL_16
#endif /* M_I386 */
#endif /* INCL_32 || INCL_16 */
/* XLATOFF */
#if (defined(INCL_32) && defined(INCL_16))
#error message ("Illegal combination of API Flags - 32 && 16")
#endif /* INCL_32 && INCL_16 */
/* XLATON */
/* Common definitions */
#include
/* OS/2 Base Include File */
#ifndef INCL_NOBASEAPI
#include
#endif /* INCL_NOBASEAPI */
/* OS/2 Presentation Manager Include File */
#ifndef INCL_NOPMAPI
#include
#endif /* INCL_NOPMAPI */