2005-11-22 10:08 UTC+0100 Viktor Szakats (viktor.szakats/syenar.hu)
* doc/en/hb_apifs.txt
! Fixed doc for hb_fsSetDevMode()
* source/rtl/filesys.c
+ Partially undone prev commit, so that now it gives
unreferenced var warnings for the not-implemented
platform branch.
* tests/bldtest/bldtest.c
+ Added missing CVS ID.
* samples/guestbk/Makefile
* samples/guestbk/bld_b32.bat
* samples/hscript/Makefile
* samples/hscript/bld_b32.bat
* samples/misc/Makefile
* samples/pe/Makefile
* tests/Makefile
* utils/hbdoc/Makefile
* utils/hbextern/Makefile
* utils/hbmake/Makefile
* utils/hbrun/Makefile
* utils/hbtest/Makefile
+ Added missing dbf*, hbsix libs.
Could not test GCC because MingW build is broken.
This commit is contained in:
@@ -7,6 +7,34 @@
|
||||
For example:
|
||||
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
* fixed <-x-> match marker
|
||||
2005-11-22 10:08 UTC+0100 Viktor Szakats (viktor.szakats/syenar.hu)
|
||||
* doc/en/hb_apifs.txt
|
||||
! Fixed doc for hb_fsSetDevMode()
|
||||
|
||||
* source/rtl/filesys.c
|
||||
+ Partially undone prev commit, so that now it gives
|
||||
unreferenced var warnings for the not-implemented
|
||||
platform branch.
|
||||
|
||||
* tests/bldtest/bldtest.c
|
||||
+ Added missing CVS ID.
|
||||
|
||||
* samples/guestbk/Makefile
|
||||
* samples/guestbk/bld_b32.bat
|
||||
* samples/hscript/Makefile
|
||||
* samples/hscript/bld_b32.bat
|
||||
* samples/misc/Makefile
|
||||
* samples/pe/Makefile
|
||||
* tests/Makefile
|
||||
* utils/hbdoc/Makefile
|
||||
* utils/hbextern/Makefile
|
||||
* utils/hbmake/Makefile
|
||||
* utils/hbrun/Makefile
|
||||
* utils/hbtest/Makefile
|
||||
+ Added missing dbf*, hbsix libs.
|
||||
Could not test GCC because MingW build is broken.
|
||||
|
||||
2005-11-22 02:22 UTC+0100 Jacek Kubica (kubica/at/wssk.wroc.pl)
|
||||
* makefile.bc
|
||||
* updated to compile source/rtl/strpeek.c
|
||||
|
||||
@@ -961,13 +961,13 @@
|
||||
* C Prototype
|
||||
*
|
||||
* #include <hbapifs.h>
|
||||
* hb_fsSetDevMode( FHANDLE hFileHandle, USHORT uiDevMode ) --> void
|
||||
* hb_fsSetDevMode( FHANDLE hFileHandle, USHORT uiDevMode ) --> BOOL
|
||||
* $ARGUMENTS$
|
||||
* <hFileHandle>
|
||||
*
|
||||
* <uiDevMode>
|
||||
* $RETURNS$
|
||||
*
|
||||
* TRUE when successful, FALSE when not.
|
||||
* $DESCRIPTION$
|
||||
*
|
||||
* $EXAMPLES$
|
||||
|
||||
@@ -21,6 +21,10 @@ LIBS=\
|
||||
vm \
|
||||
macro \
|
||||
pp \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
include $(TOP)$(ROOT)config/bin.cf
|
||||
|
||||
@@ -20,6 +20,8 @@ echo macro.lib >> build.tmp
|
||||
echo pp.lib >> build.tmp
|
||||
echo dbfntx.lib >> build.tmp
|
||||
echo dbfcdx.lib >> build.tmp
|
||||
echo dbffpt.lib >> build.tmp
|
||||
echo hbsix.lib >> build.tmp
|
||||
echo common.lib >> build.tmp
|
||||
bcc32 @build.tmp
|
||||
del build.tmp
|
||||
|
||||
@@ -19,6 +19,10 @@ LIBS=\
|
||||
vm \
|
||||
macro \
|
||||
pp \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
include $(TOP)$(ROOT)config/bin.cf
|
||||
|
||||
@@ -4,5 +4,5 @@ rem $Id$
|
||||
rem
|
||||
|
||||
..\..\bin\harbour hscript /n /i..\..\include
|
||||
bcc32 -O2 -I..\..\include -L..\..\lib -ehscript.exe hscript.c debug.lib vm.lib rtl.lib gtwin.lib lang.lib rdd.lib macro.lib pp.lib dbfntx.lib dbfcdx.lib common.lib
|
||||
bcc32 -O2 -I..\..\include -L..\..\lib -ehscript.exe hscript.c debug.lib vm.lib rtl.lib gtwin.lib lang.lib rdd.lib macro.lib pp.lib dbfntx.lib dbfcdx.lib dbffpt.lib hbsix.lib common.lib
|
||||
rem del hscript.c
|
||||
|
||||
@@ -14,6 +14,10 @@ LIBS=\
|
||||
vm \
|
||||
macro \
|
||||
pp \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
ifeq ($(PM),)
|
||||
|
||||
@@ -22,6 +22,10 @@ LIBS=\
|
||||
vm \
|
||||
macro \
|
||||
pp \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
include $(TOP)$(ROOT)config/bin.cf
|
||||
|
||||
@@ -851,9 +851,6 @@ BOOL HB_EXPORT hb_fsSetDevMode( FHANDLE hFileHandle, USHORT uiDevMode )
|
||||
|
||||
#else
|
||||
|
||||
HB_SYMBOL_UNUSED( hFileHandle );
|
||||
HB_SYMBOL_UNUSED( uiDevMode );
|
||||
|
||||
hb_fsSetError( ( USHORT ) FS_ERROR );
|
||||
|
||||
return FALSE;
|
||||
|
||||
@@ -18,6 +18,10 @@ LIBS=\
|
||||
vm \
|
||||
macro \
|
||||
pp \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
ifeq ($(PM),)
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
/*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include "hbdefs.h"
|
||||
|
||||
int main()
|
||||
|
||||
@@ -14,7 +14,7 @@ PRG_SOURCES=\
|
||||
gentrf.prg \
|
||||
genng.prg \
|
||||
genhtm.prg \
|
||||
genchm.prg \
|
||||
genchm.prg \
|
||||
genrtf.prg \
|
||||
genhpc.prg \
|
||||
genasc.prg \
|
||||
@@ -39,6 +39,10 @@ LIBS=\
|
||||
macro \
|
||||
pp \
|
||||
lang \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
include $(TOP)$(ROOT)config/bin.cf
|
||||
|
||||
@@ -23,6 +23,10 @@ LIBS=\
|
||||
vm \
|
||||
macro \
|
||||
pp \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
include $(TOP)$(ROOT)config/bin.cf
|
||||
|
||||
@@ -9,19 +9,19 @@ endif
|
||||
ROOT = ../../
|
||||
|
||||
PRG_SOURCES=\
|
||||
hbmake.prg \
|
||||
hbmutils.prg \
|
||||
fclass1.prg \
|
||||
ffile1.prg \
|
||||
ft_funcs.prg \
|
||||
radios.prg \
|
||||
checks.prg \
|
||||
pickarry.prg \
|
||||
pickfile.prg \
|
||||
prb_stak.prg \
|
||||
hbmake.prg \
|
||||
hbmutils.prg \
|
||||
fclass1.prg \
|
||||
ffile1.prg \
|
||||
ft_funcs.prg \
|
||||
radios.prg \
|
||||
checks.prg \
|
||||
pickarry.prg \
|
||||
pickfile.prg \
|
||||
prb_stak.prg \
|
||||
|
||||
C_SOURCES=\
|
||||
hbmlang.c \
|
||||
hbmlang.c \
|
||||
|
||||
|
||||
PRG_MAIN=hbmake.prg
|
||||
@@ -36,6 +36,10 @@ LIBS=\
|
||||
macro \
|
||||
pp \
|
||||
lang \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
include $(TOP)$(ROOT)config/bin.cf
|
||||
|
||||
@@ -24,6 +24,10 @@ LIBS=\
|
||||
vm \
|
||||
macro \
|
||||
pp \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
include $(TOP)$(ROOT)config/bin.cf
|
||||
|
||||
@@ -32,6 +32,10 @@ LIBS=\
|
||||
rtl \
|
||||
vm \
|
||||
macro \
|
||||
dbfntx \
|
||||
dbfcdx \
|
||||
dbffpt \
|
||||
hbsix \
|
||||
common \
|
||||
|
||||
include $(TOP)$(ROOT)config/bin.cf
|
||||
|
||||
Reference in New Issue
Block a user