Xwindows.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg$ */
  2. /*
  3. Copyright 1996, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included
  10. in all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  12. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
  13. ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT
  14. SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABIL-
  15. ITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  17. IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall
  19. not be used in advertising or otherwise to promote the sale, use or
  20. other dealings in this Software without prior written authorization from
  21. The Open Group.
  22. */
  23. /*
  24.  * This header file has for sole purpose to allow to include windows.h
  25.  * without getting any name conflicts with our code.
  26.  * Conflicts come from the fact that including windows.h actually pulls
  27.  * in the whole Windows API...
  28.  */
  29. #undef _XFree86Server
  30. #ifdef XFree86Server 
  31. #define _XFree86Server
  32. #undef XFree86Server
  33. #endif
  34. #define BOOL wBOOL
  35. #define INT32 wINT32
  36. #undef Status
  37. #define Status wStatus
  38. #define ATOM wATOM
  39. #define BYTE wBYTE
  40. #define FreeResource wFreeResource
  41. #include <windows.h>
  42. #undef Status
  43. #define Status int
  44. #undef BYTE
  45. #undef BOOL
  46. #undef INT32
  47. #undef ATOM
  48. #undef FreeResource
  49. #undef CreateWindowA
  50. #undef min
  51. #undef max
  52. #ifdef RESOURCE_H
  53. #undef RT_FONT
  54. #undef RT_CURSOR
  55. #define RT_FONT         ((RESTYPE)4)
  56. #define RT_CURSOR       ((RESTYPE)5)
  57. #endif
  58. #define sleep(x) Sleep((x) * 1000)
  59. #if defined(WIN32) && (!defined(PATH_MAX) || PATH_MAX < 1024)
  60. #undef PATH_MAX
  61. #define PATH_MAX 1024
  62. #endif
  63. #ifdef _XFree86Server
  64. #define XFree86Server
  65. #undef _XFree86Server
  66. #endif