Create FiveH.Lib and FiveHx.Lib from C:\FWH\Source\Classes
Posted: Thu Oct 16, 2008 7:39 am
Dear Mr.Antonio,
As per your instructions given in the Post http://www.fivetechsoft.com/forums/view ... hp?t=13096
I am unsuccessful in creating FiveH.Lib and FiveHx.Lib
I created 2 Batch files namely
1) mFiveH.Bat :- To create FiveH.Lib (FWH Harbour Lib)
2) mFiveHx.Bat :- To create FiveHx.Lib (FWH xHarbour Lib)
I copied the folder C:\FWH\Source\Classes to the Root ie C:\Classes
Then I copied the above given 2 batch files to the folder C:\Classes
(Should I copy the contents of the Folders c:\FWH\Source\Fuctions and C:\FWH\Source\WinApi to the Folder C:\Classes ?. I don't know )
When I try to run the batch file,
1) Most of The PRG's are getting compiled using Harbour/xHarbour :- as per the first line in the batch file
2) The C codes generated by x/Harbour is getting compiled with few warnings here and there. :- as per the 2nd line in the batch file
3) Most of the OBJ's are not getting added to the LIB :- as per the last line in the batch file
The lib files are getting created but I find minor size difference with the Original FiveH.Lib and majour fifference in the FiveHx.Lib file when compared with the Original distribution of FWH ver 8.08.
I am herewith pasting the Output produced while running the batch file mFiveHx.Bat while trying to generate FiveHx.Lib
I don't know where I have went wrong. This is my first try to generate those libs.
I am trying to generate the lib files after modifying Button.Prg to avoid the validation bug which occurs after Button click.
The Result is pasted below. It's a huge text so I am pasting only those containing the errors
Regards
Anser
As per your instructions given in the Post http://www.fivetechsoft.com/forums/view ... hp?t=13096
To rebuild the library you can use this batch file:
Code:
for %%f in (*.prg) do c:\harbour\bin\harbour %%f /n /ic:\fwh\include;c:\harbour\include
for %%f in (*.c) do c:\bcc55\bin\bcc32 -c -Ic:\bcc55\include;c:\harbour\include %%f
for %%f in (*.obj) do c:\bcc55\bin\tlib fiveh.lib -+ %%f /0 /P32,,
I am unsuccessful in creating FiveH.Lib and FiveHx.Lib
I created 2 Batch files namely
1) mFiveH.Bat :- To create FiveH.Lib (FWH Harbour Lib)
- Code: Select all Expand view
for %%f in (*.prg) do c:\harbour\bin\harbour %%f /n /ic:\fwh\include;c:\harbour\include
for %%f in (*.c) do c:\Borland\bcc55\bin\bcc32 -c -Ic:\Borland\bcc55\include;c:\harbour\include %%f
for %%f in (*.obj) do c:\Borland\bcc55\bin\tlib fiveh.lib -+ %%f /0 /P32,,
2) mFiveHx.Bat :- To create FiveHx.Lib (FWH xHarbour Lib)
- Code: Select all Expand view
for %%f in (*.prg) do c:\xharbour\bin\harbour %%f /n /ic:\fwh\include;c:\xharbour\include
for %%f in (*.c) do c:\Borland\bcc55\bin\bcc32 -c -Ic:\Borland\bcc55\include;c:\xharbour\include %%f
for %%f in (*.obj) do c:\Borland\bcc55\bin\tlib fivehx.lib -+ %%f /0 /P32,,
I copied the folder C:\FWH\Source\Classes to the Root ie C:\Classes
Then I copied the above given 2 batch files to the folder C:\Classes
(Should I copy the contents of the Folders c:\FWH\Source\Fuctions and C:\FWH\Source\WinApi to the Folder C:\Classes ?. I don't know )
When I try to run the batch file,
1) Most of The PRG's are getting compiled using Harbour/xHarbour :- as per the first line in the batch file
2) The C codes generated by x/Harbour is getting compiled with few warnings here and there. :- as per the 2nd line in the batch file
3) Most of the OBJ's are not getting added to the LIB :- as per the last line in the batch file
The lib files are getting created but I find minor size difference with the Original FiveH.Lib and majour fifference in the FiveHx.Lib file when compared with the Original distribution of FWH ver 8.08.
I am herewith pasting the Output produced while running the batch file mFiveHx.Bat while trying to generate FiveHx.Lib
I don't know where I have went wrong. This is my first try to generate those libs.
I am trying to generate the lib files after modifying Button.Prg to avoid the validation bug which occurs after Button click.
The Result is pasted below. It's a huge text so I am pasting only those containing the errors
Regards
Anser
- Code: Select all Expand view
C:\classes>c:\xharbour\bin\harbour dbm.prg /n /ic:\fwh\include;c:\xharbour\include
xHarbour Compiler build 1.1.0 (SimpLex) (Rev. 6195)
Copyright 1999-2008, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'dbm.prg'...
dbm.prg(38) Error E0030 Syntax error: "syntax error at 'ODICT'"
dbm.prg(51) Error E0030 Syntax error: "syntax error at 'AFIELDS'"
2 errors
No code generated
C:\classes>c:\xharbour\bin\harbour dbms.prg /n /ic:\fwh\include;c:\xharbour\include
xHarbour Compiler build 1.1.0 (SimpLex) (Rev. 6195)
Copyright 1999-2008, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'dbms.prg'...
dbms.prg(29) Warning W0027 Meaningless use of expression: ':'
dbms.prg(29) Warning W0027 Meaningless use of expression: ':'
dbms.prg(30) Warning W0027 Meaningless use of expression: ':'
dbms.prg(30) Warning W0027 Meaningless use of expression: ':'
dbms.prg(38) Error E0030 Syntax error: "syntax error at 'CFILE'"
1 error
No code generated
C:\classes>c:\xharbour\bin\harbour ddeserv.prg /n /ic:\fwh\include;c:\xharbour\include
xHarbour Compiler build 1.1.0 (SimpLex) (Rev. 6195)
Copyright 1999-2008, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'ddeserv.prg'...
ddeserv.prg(11) Error F0029 Can't open #include file: 'DdeFV.ch'
C:\classes>c:\xharbour\bin\harbour field.prg /n /ic:\fwh\include;c:\xharbour\include
xHarbour Compiler build 1.1.0 (SimpLex) (Rev. 6195)
Copyright 1999-2008, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'field.prg'...
field.prg(35) Error E0030 Syntax error: "syntax error at 'CNAME'"
field.prg(36) Error E0030 Syntax error: "syntax error at 'CTYPE'"
field.prg(37) Error E0030 Syntax error: "syntax error at 'NLEN'"
field.prg(38) Error E0030 Syntax error: "syntax error at 'NDEC'"
4 errors
No code generated
C:\classes>c:\xharbour\bin\harbour vbxctrl.prg /n /ic:\fwh\include;c:\xharbour\include
xHarbour Compiler build 1.1.0 (SimpLex) (Rev. 6195)
Copyright 1999-2008, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'vbxctrl.prg'...
vbxctrl.prg(152) Error E0019 #error: 'Method "InitEvents()" not declared in class: TVbControl'
vbxctrl.prg(251) Error E0030 Syntax error: "syntax error at 'BLOCK'"
vbxctrl.prg(252) Error E0030 Syntax error: "syntax error at 'BLOCK'"
vbxctrl.prg(254) Error E0030 Syntax error: "syntax error at 'BLOCK'"
vbxctrl.prg(255) Error E0030 Syntax error: "syntax error at 'BLOCK'"
5 errors
No code generated
C:\classes>c:\xharbour\bin\harbour _index.prg /n /ic:\fwh\include;c:\xharbour\include
xHarbour Compiler build 1.1.0 (SimpLex) (Rev. 6195)
Copyright 1999-2008, http://www.xharbour.org http://www.harbour-project.org/
Compiling '_index.prg'...
_index.prg(24) Error E0030 Syntax error: "syntax error at 'CNAME'"
_index.prg(25) Error E0030 Syntax error: "syntax error at 'CKEY'"
_index.prg(26) Error E0030 Syntax error: "syntax error at 'CFOR'"
_index.prg(27) Error E0030 Syntax error: "syntax error at 'BKEY'"
_index.prg(28) Error E0030 Syntax error: "syntax error at 'BFOR'"
_index.prg(29) Error E0030 Syntax error: "syntax error at 'LUNIQUE'"
6 errors
No code generated
-----------------------------------------------------------------------------------
C Files compilation section
-----------------------------------------------------------------------------------
C:\classes>c:\Borland\bcc55\bin\bcc32 -c -Ic:\Borland\bcc55\include;c:\xharbour\include ttray.c
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
ttray.c:
Error E2451 ttray.prg 174: Undefined symbol 'NIF_INFO' in function HB_FUN_GETNOTIFYICONDATA
Error E2451 ttray.prg 175: Undefined symbol 'dwInfoFlags' in function HB_FUN_GETNOTIFYICONDATA
Error E2451 ttray.prg 175: Undefined symbol 'NIIF_INFO' in function HB_FUN_GETNOTIFYICONDATA
Error E2451 ttray.prg 179: Undefined symbol 'szInfo' in function HB_FUN_GETNOTIFYICONDATA
Error E2451 ttray.prg 180: Undefined symbol 'szInfoTitle' in function HB_FUN_GETNOTIFYICONDATA
*** 5 errors in Compile ***
----------------------------------------------------------------------------------
OBJ Section, Adding to LIB, Lot of warning & errors
----------------------------------------------------------------------------------
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ activex.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'activex' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ bar.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'bar' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ bitmap.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'bitmap' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ block.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'block' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ brush.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'brush' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ btnbmp.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'btnbmp' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ button.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'button' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ buttonb.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'buttonb' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ checkbox.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'checkbox' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ clipbrd.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'clipbrd' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ combobox.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'combobox' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ control.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'control' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ cursor.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'cursor' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ database.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'database' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ dbcombo.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'dbcombo' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ dde.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'dde' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ddeclien.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ddeclien' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ dialog.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'dialog' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ dlgfind.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'dlgfind' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ edit.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'edit' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ fget.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'fget' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ fline.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'fline' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ folder.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'folder' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ font.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'font' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ group.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'group' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ icon.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'icon' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ iget.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'iget' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ igroup.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'igroup' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ image.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'image' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ini.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ini' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ internet.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'internet' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ linklist.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'linklist' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ listbox.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'listbox' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ mdichild.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'mdichild' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ mdiclien.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'mdiclien' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ mdiframe.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'mdiframe' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ menu.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'menu' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ menuitem.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'menuitem' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ meter.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'meter' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ mget.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'mget' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ mru.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'mru' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ msgbar.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'msgbar' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ng.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ng' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ objfile.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'objfile' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ outl2003.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'outl2003' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ outlook.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'outlook' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ pdmenu.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'pdmenu' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ pdreport.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'pdreport' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ pen.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'pen' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ printer.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'printer' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ radio.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'radio' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ radmenu.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'radmenu' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rcolumn.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rcolumn' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rebar.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rebar' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rect.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rect' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ reg32.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'reg32' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ report.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'report' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rfile.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rfile' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rgroup.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rgroup' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rline.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rline' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rpreview.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rpreview' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rrw.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rrw' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ rtffile.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'rtffile' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ say.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'say' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ scrllbar.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'scrllbar' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ selector.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'selector' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ slider.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'slider' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ splitter.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'splitter' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ sqlerror.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'sqlerror' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ statusba.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'statusba' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tabs.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tabs' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tacctbl.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tacctbl' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tanimate.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tanimate' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tcbrowse.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tcbrowse' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tccolumn.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tccolumn' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tclipget.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tclipget' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tcomm.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tcomm' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tcomobj.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tcomobj' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tcompone.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tcompone' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tctrsock.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tctrsock' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tdbase.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tdbase' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tdbfcomp.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tdbfcomp' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tdbodbc.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tdbodbc' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tdbodbcd.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tdbodbcd' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tddemlcl.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tddemlcl' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tddemlsv.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tddemlsv' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tdict.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tdict' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tdosprn.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tdosprn' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tdtpicke.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tdtpicke' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tenhmeta.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tenhmeta' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ testfldd.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'testfldd' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ texstruc.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'texstruc' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tfield.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tfield' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tfile.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tfile' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tfilegtf.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tfilegtf' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tform.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tform' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tftp.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tftp' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tftpcli.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tftpcli' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tftpfile.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tftpfile' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tftpserv.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tftpserv' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tftpsess.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tftpsess' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tget.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tget' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tgif.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tgif' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tgraph.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tgraph' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ theader.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'theader' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ thtmlpag.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'thtmlpag' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ timaglst.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'timaglst' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ time.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'time' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ timer.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'timer' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tindex.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tindex' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tlex.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tlex' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tlib.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tlib' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tlistvie.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tlistvie' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tlocks.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tlocks' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tmail.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tmail' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tmci.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tmci' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tmetafil.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tmetafil' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tmnucomp.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tmnucomp' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tmsgitem.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tmsgitem' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tnewsins.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tnewsins' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tnewssrv.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tnewssrv' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ todbc.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'todbc' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ toolbar.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'toolbar' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tordinfo.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tordinfo' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tpages.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tpages' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tpanel.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tpanel' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tparser.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tparser' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tpop3.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tpop3' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tprogres.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tprogres' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tproxy.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tproxy' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ trackbar.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'trackbar' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tras.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tras' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ trdd.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'trdd' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ trddodbc.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'trddodbc' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ treeitem.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'treeitem' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ trees.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'trees' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tresourc.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tresourc' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ trichedi.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'trichedi' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tsmtp.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tsmtp' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tsocket.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tsocket' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tstring.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tstring' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tstruct.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tstruct' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tsymbol.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tsymbol' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tsymtabl.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tsymtabl' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ttabctrl.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ttabctrl' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ttable.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ttable' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ttmpicke.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ttmpicke' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ttreevie.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ttreevie' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ttvitem.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ttvitem' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ttxtedit.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ttxtedit' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ ttxtfile.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'ttxtfile' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tview.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tview' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ twebclie.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'twebclie' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ twebserv.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'twebserv' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ tyacc.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'tyacc' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ urllink.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'urllink' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ vbxarray.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'vbxarray' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ video.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'video' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ wbrowse.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'wbrowse' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ window.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'window' not found in library
C:\classes>c:\Borland\bcc55\bin\tlib fivehx.lib -+ xbrowse.obj /0 /P32,,
TLIB 4.5 Copyright (c) 1987, 1999 Inprise Corporation
Warning: 'xbrowse' not found in library