Source: classlib/include/systypes.h
|
|
|
|
/***************************************************************************
systypes.h - tipi standard di sistema
-------------------
begin : ven dic 7 17:40:01 CET 2001
copyright : (C) 2001 by Nicola De Nisco
email : nicola@winada.it
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#if !defined( __SYSTYPES_H )
#define __SYSTYPES_H
typedef signed char int8;
typedef signed short int16;
typedef signed long int32;
typedef unsigned char uint8;
typedef unsigned short uint16;
typedef unsigned long uint32;
typedef unsigned char UCHAR;
typedef char* LPSTR;
typedef const char* LPCSTR;
typedef const char* LPCTSTR;
typedef signed int INT;
typedef unsigned int UINT;
typedef signed int* LPINT;
typedef unsigned int* LPUINT;
typedef signed long LONG;
typedef unsigned long ULONG;
typedef signed long* LPLONG;
typedef unsigned long* LPULONG;
typedef signed short SHORT;
typedef unsigned short USHORT;
typedef signed short* LPSHORT;
typedef unsigned short* LPUSHORT;
typedef unsigned char BYTE;
typedef unsigned char* LPBYTE;
typedef unsigned short int WORD;
typedef unsigned short int* LPWORD;
typedef unsigned int DWORD;
typedef unsigned int* LPDWORD;
typedef void* LPVOID;
// byNIK: gia' definito in librerie QT come long int
// typedef void* HANDLE;
#ifndef BOOL
#define BOOL int
#define TRUE 1
#define FALSE 0
#endif
typedef BOOL* LPBOOL;
#ifdef __cplusplus
#define STDAPI extern "C" int
#else
#define STDAPI int
#endif
#endif /* __SYSTYPES_H */
Generated by: nicola on gulliver.wadahome.it on Sun May 25 13:54:34 2003, using kdoc 2.0a53. |