Andi Jahja <harbour@cbn.net.id>
This commit is contained in:
@@ -7,6 +7,12 @@
|
||||
For example:
|
||||
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
calls.
|
||||
|
||||
* include/hbapi.h
|
||||
* include/hbundoc.api
|
||||
* Some compatibility #defines moved to its place.
|
||||
|
||||
|
||||
2001-12-22 11:30 UTC+0100 Antonio Linares <alinares@fivetech.com>
|
||||
* source/vm/dynlibhb.c
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern void hb_vmProcessSymbols( PHB_SYMB pSymbols, USHORT uiSymbols ); /* statics symbols initialization */
|
||||
extern void HB_EXPORT hb_vmProcessSymbols( PHB_SYMB pSymbols, USHORT uiSymbols ); /* statics symbols initialization */
|
||||
|
||||
#if defined(HARBOUR_STRICT_ANSI_C)
|
||||
|
||||
|
||||
@@ -1031,7 +1031,7 @@ BOOL hb_fsDelete( BYTE * pFilename )
|
||||
#if defined(HB_OS_WIN_32)
|
||||
|
||||
bResult = ( DeleteFile( ( char * ) pFilename ) == 0 );
|
||||
s_uiErrorLast = GetLastError();
|
||||
s_uiErrorLast = (USHORT) GetLastError();
|
||||
|
||||
#elif defined(HAVE_POSIX_IO)
|
||||
|
||||
@@ -1064,7 +1064,7 @@ BOOL hb_fsRename( BYTE * pOldName, BYTE * pNewName )
|
||||
#if defined(HB_OS_WIN_32)
|
||||
|
||||
bResult = ( MoveFile( ( char * ) pOldName, ( char * ) pNewName ) == 0 );
|
||||
s_uiErrorLast = GetLastError();
|
||||
s_uiErrorLast = (USHORT) GetLastError();
|
||||
|
||||
#elif defined(HB_FS_FILE_IO)
|
||||
|
||||
@@ -1307,7 +1307,7 @@ BOOL hb_fsMkDir( BYTE * pDirname )
|
||||
#if defined(HB_OS_WIN_32)
|
||||
|
||||
bResult = ( CreateDirectory( ( char * ) pDirname, NULL ) == 0 );
|
||||
s_uiErrorLast = GetLastError();
|
||||
s_uiErrorLast = (USHORT) GetLastError();
|
||||
|
||||
#elif defined(HAVE_POSIX_IO) || defined(__MINGW32__)
|
||||
|
||||
@@ -1340,7 +1340,7 @@ BOOL hb_fsChDir( BYTE * pDirname )
|
||||
#if defined(HB_OS_WIN_32)
|
||||
|
||||
bResult = ( SetCurrentDirectory( ( char * ) pDirname ) == 0 );
|
||||
s_uiErrorLast = GetLastError();
|
||||
s_uiErrorLast = (USHORT) GetLastError();
|
||||
|
||||
#elif defined(HAVE_POSIX_IO) || defined(__MINGW32__)
|
||||
|
||||
@@ -1367,7 +1367,7 @@ BOOL hb_fsRmDir( BYTE * pDirname )
|
||||
#if defined(HB_OS_WIN_32)
|
||||
|
||||
bResult = ( RemoveDirectory( ( char * ) pDirname ) == 0 );
|
||||
s_uiErrorLast = GetLastError();
|
||||
s_uiErrorLast = (USHORT) GetLastError();
|
||||
|
||||
#elif defined(HAVE_POSIX_IO) || defined(__MINGW32__)
|
||||
|
||||
@@ -1413,7 +1413,7 @@ USHORT hb_fsCurDirBuff( USHORT uiDrive, BYTE * pbyBuffer, ULONG ulLen )
|
||||
#if defined(HB_OS_WIN_32)
|
||||
|
||||
GetCurrentDirectory( ulLen, ( char * ) pbyBuffer );
|
||||
s_uiErrorLast = GetLastError();
|
||||
s_uiErrorLast = (USHORT) GetLastError();
|
||||
|
||||
#elif defined(HAVE_POSIX_IO)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user