home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _34541e53fa5f5585122c909e36c023c4 < prev    next >
Text File  |  2004-06-01  |  898b  |  41 lines

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