2009-08-21 16:42 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/vm/maindllh.c
* source/vm/maindllp.c
! Fixed DllMain() declaration for msvcarm targets.
Thanks Przemek for the hint.
This commit is contained in:
@@ -17,6 +17,12 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2009-08-21 16:42 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* source/vm/maindllh.c
|
||||
* source/vm/maindllp.c
|
||||
! Fixed DllMain() declaration for msvcarm targets.
|
||||
Thanks Przemek for the hint.
|
||||
|
||||
2009-08-21 16:17 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* source/vm/fm.c
|
||||
! Fixed to suppress fcntl header in dlmalloc for msvcarm targets.
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
|
||||
#if defined( HB_OS_WIN )
|
||||
|
||||
#if defined( HB_OS_WIN_CE ) && defined( __POCC__ )
|
||||
#if defined( HB_OS_WIN_CE ) && ( defined( _MSC_VER ) || defined( __POCC__ ) )
|
||||
HB_EXPORT BOOL WINAPI HB_DLL_ENTRY_POINT( HANDLE hInstance, DWORD fdwReason, PVOID pvReserved )
|
||||
#else
|
||||
HB_EXPORT BOOL WINAPI HB_DLL_ENTRY_POINT( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
|
||||
|
||||
@@ -140,7 +140,7 @@ static FARPROC hb_getProcAddress( LPCSTR szProcName )
|
||||
return pProcAddr;
|
||||
}
|
||||
|
||||
#if defined( HB_OS_WIN_CE ) && defined( __POCC__ )
|
||||
#if defined( HB_OS_WIN_CE ) && ( defined( _MSC_VER ) || defined( __POCC__ ) )
|
||||
HB_EXPORT BOOL WINAPI HB_DLL_ENTRY_POINT( HANDLE hInstance, DWORD fdwReason, PVOID pvReserved )
|
||||
#else
|
||||
HB_EXPORT BOOL WINAPI HB_DLL_ENTRY_POINT( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
|
||||
|
||||
Reference in New Issue
Block a user