new type added

This commit is contained in:
Antonio Linares
1999-05-11 13:08:15 +00:00
parent 683b2b97f6
commit 6b4cbb9208
3 changed files with 9 additions and 6 deletions

View File

@@ -14,6 +14,9 @@ typedef unsigned short int WORD;
#undef SHORT /* 2 bytes signed */
typedef short int SHORT;
#undef USHORT /* 2 bytes unsigned */
typedef unsigned short int USHORT;
#undef LONG /* 4 bytes signed */
typedef long LONG;
typedef unsigned long ULONG;

View File

@@ -14,10 +14,9 @@ PROJECT: harbour.lib libs\b32\terminal.lib libs\win32\terminal.lib harbour.exe
harbour.lib : arrays.obj asort.obj classes.obj codebloc.obj dates.obj datesx.obj \
debug.obj dynsym.obj environ.obj error.obj \
errorapi.obj errorsys.obj extend.obj files.obj itemapi.obj math.obj \
mathx.obj objfunc.obj set.obj symbols.obj stringp.obj \
strings.obj stringsx.obj strcmp.obj \
tclass.obj transfrm.obj
errorapi.obj errorsys.obj extend.obj files.obj gtapi.obj itemapi.obj \
math.obj mathx.obj set.obj symbols.obj strings.obj stringp.obj \
stringsx.obj strcmp.obj tclass.obj transfrm.obj
libs\b32\terminal.lib : console.obj
@@ -45,6 +44,7 @@ errorapi.obj : errorapi.c extend.h types.h
errorsys.obj : errorsys.c extend.h types.h
extend.obj : extend.c extend.h types.h
files.obj : extend.c extend.h types.h
gtapi.obj : extend.c extend.h types.h
itemapi.obj : itemapi.c extend.h types.h
math.obj : math.c extend.h types.h
mathx.obj : mathx.c extend.h types.h
@@ -65,7 +65,7 @@ stringp.c : stringp.prg harbour.exe
tclass.c : tclass.prg harbour.exe
.asm.obj:
tasm $<, $@
tasm32 $<, $@
tlib .\libs\b32\harbour.lib -+$@,,
.prg.c:

View File

@@ -1,3 +1,3 @@
..\..\bin\harbour %1 /fobj32 /n
tlink32 -v -L..\..\libs\b32;c:\bc5\lib c:\bc5\lib\c0x32.obj %1.obj hvm.obj,%1.exe,, harbour.lib terminal.lib import32.lib cw32mt.lib
tlink32 -L..\..\libs\b32;c:\bc5\lib c:\bc5\lib\c0x32.obj %1.obj hvm.obj,%1.exe,, harbour.lib terminal.lib import32.lib cw32mt.lib