diff --git a/harbour/ChangeLog b/harbour/ChangeLog index fe65e94122..1035a56620 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2012-11-13 19:16 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbfoxpro/dll.prg + * contrib/hbfoxpro/misc.prg + * hbformatted + 2012-11-13 19:02 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbfimage/fi_wrp.c * contrib/hbgd/gdwrp.c diff --git a/harbour/contrib/hbfoxpro/dll.prg b/harbour/contrib/hbfoxpro/dll.prg index a4c9e182f8..db4261c03c 100644 --- a/harbour/contrib/hbfoxpro/dll.prg +++ b/harbour/contrib/hbfoxpro/dll.prg @@ -57,7 +57,7 @@ DECLARE [cFunctionType] FunctionName IN LibraryName [AS AliasName] [cParamType1 [@] ParamName1, cParamType2 [@] ParamName2, ...] */ -FUNCTION FOX___DYNCALL( cCommand, ... ) +FUNCTION fox___DynCall( cCommand, ... ) LOCAL aParam diff --git a/harbour/contrib/hbfoxpro/misc.prg b/harbour/contrib/hbfoxpro/misc.prg index fffce7e4f2..0c8941eff2 100644 --- a/harbour/contrib/hbfoxpro/misc.prg +++ b/harbour/contrib/hbfoxpro/misc.prg @@ -52,7 +52,7 @@ #include "setcurs.ch" -FUNCTION SYS( nValue, xPar1 ) +FUNCTION Sys( nValue, xPar1 ) SWITCH nValue CASE 0 @@ -84,5 +84,5 @@ STATIC FUNCTION AFillNested( aValue, xVal ) RETURN aValue -FUNCTION __FOX_ARRAY( ... ) +FUNCTION __fox_Array( ... ) RETURN AFillNested( Array( ... ), .F. )