105b261ecSmrg#ifndef _WINMS_H_ 205b261ecSmrg#define _WINMS_H_ 305b261ecSmrg/* 405b261ecSmrg *Copyright (C) 2001-2004 Harold L Hunt II All Rights Reserved. 505b261ecSmrg * 605b261ecSmrg *Permission is hereby granted, free of charge, to any person obtaining 705b261ecSmrg * a copy of this software and associated documentation files (the 805b261ecSmrg *"Software"), to deal in the Software without restriction, including 905b261ecSmrg *without limitation the rights to use, copy, modify, merge, publish, 1005b261ecSmrg *distribute, sublicense, and/or sell copies of the Software, and to 1105b261ecSmrg *permit persons to whom the Software is furnished to do so, subject to 1205b261ecSmrg *the following conditions: 1305b261ecSmrg * 1405b261ecSmrg *The above copyright notice and this permission notice shall be 1505b261ecSmrg *included in all copies or substantial portions of the Software. 1605b261ecSmrg * 1705b261ecSmrg *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 1805b261ecSmrg *EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 1905b261ecSmrg *MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 2005b261ecSmrg *NONINFRINGEMENT. IN NO EVENT SHALL HAROLD L HUNT II BE LIABLE FOR 2105b261ecSmrg *ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 2205b261ecSmrg *CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 2305b261ecSmrg *WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 2405b261ecSmrg * 2505b261ecSmrg *Except as contained in this notice, the name of Harold L Hunt II 2605b261ecSmrg *shall not be used in advertising or otherwise to promote the sale, use 2705b261ecSmrg *or other dealings in this Software without prior written authorization 2805b261ecSmrg *from Harold L Hunt II. 2905b261ecSmrg * 3005b261ecSmrg * Authors: Harold L Hunt II 3105b261ecSmrg */ 3205b261ecSmrg 3305b261ecSmrg#define DIRECTDRAW_VERSION 0x0300 3405b261ecSmrg#ifndef WIN32_LEAN_AND_MEAN 3505b261ecSmrg#define WIN32_LEAN_AND_MEAN 3605b261ecSmrg#endif 376747b715Smrg#ifndef WINVER 386747b715Smrg#define WINVER 0x0500 396747b715Smrg#endif 4005b261ecSmrg 4105b261ecSmrg#include <X11/Xwindows.h> 4205b261ecSmrg#include <windowsx.h> 4305b261ecSmrg 4435c4bbdfSmrg#pragma push_macro("Status") 4535c4bbdfSmrg#undef Status 4635c4bbdfSmrg#define Status wStatus 4705b261ecSmrg#include "ddraw.h" 4835c4bbdfSmrg#pragma pop_macro("Status") 4905b261ecSmrg 5005b261ecSmrg#undef CreateWindow 5105b261ecSmrg 5235c4bbdfSmrg#endif /* _WINMS_H_ */ 53