X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftypes.h;h=d5528daf8926b856a29d7f7b75d861fcb821672a;hb=3237f100b93a7d331880b7bf92305c891872040e;hp=6929124897f6869214fc957f2a3a003ccb1320b7;hpb=e553045660c23a10ae193562ec2b46a8a2b84ee6;p=16.git diff --git a/src/lib/types.h b/src/lib/types.h index 69291248..d5528daf 100755 --- a/src/lib/types.h +++ b/src/lib/types.h @@ -1,5 +1,5 @@ /* Project 16 Source Code~ - * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 + * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover * * This file is part of Project 16. * @@ -29,7 +29,7 @@ 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; @@ -42,4 +42,11 @@ typedef signed long int sdiword; typedef enum {false,true} boolean; +#ifdef __WATCOMC__ +typedef void __based(__self) * memptr; +#endif +#ifdef __BORLANDC__ +typedef void _seg * memptr; +#endif + #endif/*_TYPE_H_*/