X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftypes.h;h=093b38da5df52bc9d21c8dd6c6f8aae20133d6d9;hb=330b72f5c3a57ed0a17636059df12e0195a5c3cd;hp=039653f2e8cb2b934d62b6f57672e4db493cbf4f;hpb=f66b2c6a16e6f6c2c9c07a39d1855b5ea178fead;p=16.git diff --git a/src/lib/types.h b/src/lib/types.h old mode 100644 new mode 100755 index 039653f2..093b38da --- a/src/lib/types.h +++ b/src/lib/types.h @@ -1,11 +1,65 @@ +/* Project 16 Source Code~ + * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover + * + * This file is part of Project 16. + * + * Project 16 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 3 of the License, or + * (at your option) any later version. + * + * Project 16 is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see , or + * write to the Free Software Foundation, Inc., 51 Franklin Street, + * Fifth Floor, Boston, MA 02110-1301 USA. + * + */ /* * Just some handy typedefs that make it easier to think about the low * level code */ +#ifndef _TYPE_H_ +#define _TYPE_H_ + typedef unsigned char byte; typedef unsigned short word; -typedef unsigned long dword; +typedef unsigned long dword; typedef signed char sbyte; typedef signed short sword; typedef signed long sdword; + +typedef unsigned int iword; +typedef signed int siword; + +typedef unsigned long int diword; +typedef signed long int sdiword; + +typedef enum {false,true} boolean; +/*typedef unsigned memseg; + +memptr should be replaced by memseg in code. + +on usage where you need pointer convert memseg type (segment) to far pointer by +MK_FP(segment value, 0)*/ +#ifdef __WATCOMC__ +//typedef unsigned short _seg; // it will contains segment value (as Borland _seg) +#define _seg __based( void ) +#define __SEGA __segment +#endif +#ifdef __BORLANDC__ +//typedef void _seg * memptr; +#define __SEGA _seg +#endif + +typedef void _seg * memptr;//typedef void __based( void ) * memptr; ////old //----typedef void __based(__self) * memptr; + +#define _argv __argv +#define _argc __argc + +#endif/*_TYPE_H_*/