00001 /* 00002 /-------------------------------------------------------------------- 00003 | 00004 | $Id: plpaintlibdefs.h,v 1.1 2004/05/21 21:02:53 maxx Exp $ 00005 | 00006 | Copyright (c) 1996-2002 Ulrich von Zadow 00007 | 00008 \-------------------------------------------------------------------- 00009 */ 00010 00013 00014 #ifndef INCL_PLPAINTLIBDEFS 00015 #define INCL_PLPAINTLIBDEFS 00016 00017 typedef unsigned char PLBYTE; 00018 typedef unsigned int PLUINT; 00019 typedef unsigned short PLWORD; // This is 16 bit. 00020 typedef long PLLONG; // This is 32 bit. 00021 typedef unsigned long PLULONG; 00022 00023 #ifndef _WINDOWS 00024 #include <stdarg.h> 00025 00026 // max & min definitions 00027 #include <algorithm> // STL 00028 00029 #ifndef NULL 00030 #define NULL 0 00031 #endif 00032 00033 #endif //#ifndef _WINDOWS 00034 00035 00036 #endif 00037 /* 00038 /-------------------------------------------------------------------- 00039 | 00040 | $Log: plpaintlibdefs.h,v $ 00041 | Revision 1.1 2004/05/21 21:02:53 maxx 00042 | Initial Version of vuVolume, moderatly changed to make it compile on my windows and linux machine. 00043 | 00044 | Revision 1.1 2002/11/13 01:58:21 mspindle 00045 | *** empty log message *** 00046 | 00047 | Revision 1.4 2002/02/24 13:00:22 uzadow 00048 | Documentation update; removed buggy PLFilterRotate. 00049 | 00050 | Revision 1.3 2001/10/06 22:03:26 uzadow 00051 | Added PL prefix to basic data types. 00052 | 00053 | Revision 1.2 2001/10/06 15:32:22 uzadow 00054 | Removed types LPBYTE, DWORD, UCHAR, VOID and INT from the code. 00055 | 00056 | Revision 1.1 2001/09/16 19:03:22 uzadow 00057 | Added global name prefix PL, changed most filenames. 00058 | 00059 | Revision 1.3 2001/09/15 21:02:44 uzadow 00060 | Cleaned up stdpch.h and config.h to make them internal headers. 00061 | 00062 | Revision 1.2 2000/11/09 22:23:36 uzadow 00063 | no message 00064 | 00065 | Revision 1.1 2000/11/07 15:33:44 jmbuena 00066 | Windows type defines for non windows systems 00067 | 00068 | 00069 \-------------------------------------------------------------------- 00070 */