This commit is contained in:
Andi Jahja
2001-12-28 22:04:58 +00:00
parent 2caad08fa0
commit 995c1f2ac8
6 changed files with 23 additions and 9 deletions

View File

@@ -7,6 +7,20 @@
For example:
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2001-12-28 23:30 UTC+0700 Andi Jahja <harbour@cbn.net.id>
IMPORTANT: For those who get duplicate defines when compiling
Win32 code, the #define HB_OS_WIN_32_USED should be defined
somewhere before including clipdefs.h.
2001-12-28 18:54 UTC+0100 Patrick Mast <email@patrickmast.com>
* contrib/apollo
+ added readme.txt
* contrib/apollo/test
+ bld.bat
+ bld_b32.bat
* updated apollo.prg
2001-12-28 13:28 UTC+0100 Patrick Mast <email@patrickmast.com>
+ contrib/apollo
* Started Apollo SDE60.DLL connection for accessing
SIXNSX database files

View File

@@ -274,7 +274,7 @@ typedef USHORT ERRCODE;
extern HB_SYMB hb_symEval;
/* Extend API */
extern char * hb_parc( int iParam, ... ); /* retrieve a string parameter */
extern char HB_EXPORT * hb_parc( int iParam, ... ); /* retrieve a string parameter */
extern ULONG hb_parclen( int iParam, ... ); /* retrieve a string parameter length */
extern ULONG hb_parcsiz( int iParam, ... ); /* retrieve a by-reference string parameter length, including terminator */
extern char * hb_pards( int iParam, ... ); /* retrieve a date as a string yyyymmdd */

View File

@@ -131,7 +131,7 @@ BOOL HB_EXPORT hb_extIsArray( int iParam )
/* NOTE: Caller should not modify the buffer returned by this function.
[vszakats] */
char * HB_EXPORT hb_parc( int iParam, ... )
char HB_EXPORT * hb_parc( int iParam, ... )
{
HB_TRACE(HB_TR_DEBUG, ("hb_parc(%d, ...)", iParam));

View File

@@ -62,7 +62,7 @@
#if defined(HB_OS_WIN_32)
BOOL WINAPI HB_EXPORT DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
BOOL HB_EXPORT WINAPI DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
{
HB_TRACE( HB_TR_DEBUG, ("DllEntryPoint(%p, %p, %d)", hInstance, fdwReason,
pvReserved ) );
@@ -85,11 +85,11 @@ BOOL WINAPI HB_EXPORT DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID
return TRUE;
}
LONG PASCAL HB_EXPORT HBDLLENTRY( char * cProcName )
LONG HB_EXPORT PASCAL HBDLLENTRY( char * cProcName )
{
hb_itemDoC( cProcName, 0, 0 );
return 0;
}
#endif
#endif

View File

@@ -62,7 +62,7 @@
#if defined(HB_OS_WIN_32)
BOOL WINAPI HB_EXPORT DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
BOOL HB_EXPORT WINAPI DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
{
HB_TRACE( HB_TR_DEBUG, ("DllEntryPoint(%p, %p, %d)", hInstance, fdwReason,
pvReserved ) );
@@ -83,4 +83,4 @@ BOOL WINAPI HB_EXPORT DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID
return TRUE;
}
#endif
#endif

View File

@@ -72,7 +72,7 @@ typedef char * ( * EXT_PARC2 ) ( int iParam, ULONG ulArrayIndex );
#if defined(HB_OS_WIN_32)
BOOL WINAPI HB_EXPORT DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
BOOL HB_EXPORT WINAPI DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
{
HB_TRACE( HB_TR_DEBUG, ("DllEntryPoint(%p, %p, %d)", hInstance, fdwReason,
pvReserved ) );
@@ -147,4 +147,4 @@ char * hb_parc( int iParam, ... )
return "";
}
#endif
#endif