removed unnecessary win platform guard. (In Harbour

dynlib calls work on every OS)
This commit is contained in:
Viktor Szakats
2013-03-22 19:06:50 +01:00
parent 49711d0d74
commit eeee015a4d
2 changed files with 5 additions and 4 deletions

View File

@@ -10,6 +10,11 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/ */
2013-03-22 19:05 UTC+0100 Viktor Szakats (harbour syenar.net)
* contrib/xhb/hbdll.ch
+ removed unnecessary win platform guard. (In Harbour
dynlib calls work on every OS)
2013-03-22 11:12 UTC+0100 Viktor Szakats (harbour syenar.net) 2013-03-22 11:12 UTC+0100 Viktor Szakats (harbour syenar.net)
* README.txt * README.txt
+ added link to automated build service page + added link to automated build service page

View File

@@ -57,9 +57,6 @@
#define DC_RETVAL_MATH4 0x0100 // Return value in ST #define DC_RETVAL_MATH4 0x0100 // Return value in ST
#define DC_RETVAL_MATH8 0x0200 // Return value in ST #define DC_RETVAL_MATH8 0x0200 // Return value in ST
// Avoid xHarbour code when included by dllcall.c
#if defined( __PLATFORM__WINDOWS )
#include "cstruct.ch" #include "cstruct.ch"
#include "wintypes.ch" #include "wintypes.ch"
@@ -140,4 +137,3 @@
RETURN DllExecuteCall( t_cTemplate [, <ArgName>] [, <ArgNameN>] ) RETURN DllExecuteCall( t_cTemplate [, <ArgName>] [, <ArgNameN>] )
#endif #endif
#endif