home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / apache / files / ActivePerl-5.6.1.638-MSWin32-x86.msi / _34541e53fa5f5585122c909e36c023c4 < prev    next >
Encoding:
Text File  |  2004-04-13  |  935 b   |  45 lines

  1. /*
  2.  * tixWinPort.h --
  3.  *
  4.  *    This header file handles porting issues that occur because of
  5.  *    differences between systems.  It reads in platform specific
  6.  *    portability files.
  7.  *
  8.  * Copyright (c) 1996, Expert Interface Technologies
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  */
  14.  
  15. #ifndef _TIX_WINPORT_H_
  16. #define _TIX_WINPORT_H_
  17.  
  18. #include <stdio.h>
  19.  
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <errno.h>
  23. #include <sys/stat.h>
  24. #include <sys/timeb.h>
  25. #include <time.h>
  26. #include <io.h>
  27. #include <fcntl.h>
  28.  
  29. #define WIN32_LEAN_AND_MEAN
  30. #    ifndef __PM__
  31. #         include <windows.h>
  32. #    endif
  33. #undef WIN32_LEAN_AND_MEAN
  34.  
  35. struct _TixpSubRegion {
  36.     Pixmap pixmap;
  37.     int origX, origY;
  38.     int x, y;
  39.     int width, height;
  40. };
  41.  
  42. typedef unsigned char UNSIGNED_CHAR;
  43.  
  44. #endif /* _TIX_WINPORT_H_ */
  45.