Files
harbour-core/contrib/hbwin/wapi_winbase_2.c
Przemysław Czerpak 134ef37309 2017-11-15 14:34 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbwin/wapi_winbase_2.c
  * contrib/hbwin/wapi_winuser_2.c
    ! fixed WinCE builds
2017-11-15 14:34:45 +01:00

176 lines
5.4 KiB
C

/*
* Windows API functions (winbase)
*
* Copyright 2009 Viktor Szakats (vszakats.net/harbour)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file LICENSE.txt. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA (or visit https://www.gnu.org/licenses/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
#include "hbwapi.h"
#include "hbapiitm.h"
HB_FUNC( WAPI_GETLASTERROR )
{
hb_retnl( ( long ) hbwapi_GetLastError() );
}
HB_FUNC( WAPI_GETCURRENTPROCESSID )
{
hb_retnint( GetCurrentProcessId() );
}
HB_FUNC( WAPI_GETCURRENTTHREADID )
{
hb_retnint( GetCurrentThreadId() );
}
HB_FUNC( WAPI_FORMATMESSAGE )
{
void * hSource = NULL;
LPTSTR lpAllocBuff = NULL;
LPTSTR lpBuffer = NULL;
HB_SIZE nSize = 0;
DWORD dwRetVal;
DWORD dwFlags;
dwFlags = ( DWORD ) hb_parnldef( 1, FORMAT_MESSAGE_FROM_SYSTEM );
if( HB_ISBYREF( 5 ) )
{
nSize = hb_parns( 6 );
if( ( dwFlags & FORMAT_MESSAGE_ALLOCATE_BUFFER ) == 0 )
{
if( nSize == 0 && ! HB_ISNUM( 6 ) )
nSize = hb_parclen( 5 );
if( nSize > 0 )
lpBuffer = ( LPTSTR ) hb_xgrab( nSize * sizeof( TCHAR ) );
else
dwFlags |= FORMAT_MESSAGE_ALLOCATE_BUFFER;
}
}
else
dwFlags = ( DWORD ) ~FORMAT_MESSAGE_ALLOCATE_BUFFER;
if( dwFlags & FORMAT_MESSAGE_ALLOCATE_BUFFER )
lpBuffer = ( LPTSTR ) &lpAllocBuff;
dwRetVal = FormatMessage( dwFlags,
HB_ISCHAR( 2 ) ? ( LPCVOID ) HB_PARSTR( 2, &hSource, NULL ) : hb_parptr( 2 ),
HB_ISNUM( 3 ) ? ( DWORD ) hb_parnl( 3 ) : hbwapi_GetLastError() /* dwMessageId */,
( DWORD ) hb_parnldef( 4, MAKELANGID( LANG_NEUTRAL, SUBLANG_DEFAULT ) ) /* dwLanguageId */,
lpBuffer,
( DWORD ) nSize,
NULL /* TODO: Add support for this parameter. */ );
hbwapi_SetLastError( GetLastError() );
hb_retnl( dwRetVal );
if( lpBuffer )
{
if( dwFlags & FORMAT_MESSAGE_ALLOCATE_BUFFER )
lpBuffer = lpAllocBuff;
else
lpBuffer[ nSize - 1 ] = '\0';
HB_STORSTR( dwRetVal ? lpBuffer : NULL, 5 );
if( lpAllocBuff )
LocalFree( lpAllocBuff );
else if( lpBuffer )
hb_xfree( lpBuffer );
}
hb_strfree( hSource );
}
/* VOID WINAPI Sleep( __in DWORD dwMilliseconds ); */
HB_FUNC( WAPI_SLEEP )
{
Sleep( ( DWORD ) hb_parnl( 1 ) );
}
HB_FUNC( WAPI_OUTPUTDEBUGSTRING )
{
void * hOutputString;
OutputDebugString( HB_PARSTR( 1, &hOutputString, NULL ) );
hb_strfree( hOutputString );
}
#define TARGET_PATH_BUFFER_SIZE 4096
HB_FUNC( WAPI_QUERYDOSDEVICE )
{
#if ! defined( HB_OS_WIN_CE )
void * hDeviceName;
LPTSTR lpTargetPath = ( LPTSTR ) hb_xgrab( TARGET_PATH_BUFFER_SIZE * sizeof( TCHAR ) );
DWORD dwResult;
dwResult = QueryDosDevice( HB_PARSTR( 1, &hDeviceName, NULL ), lpTargetPath, TARGET_PATH_BUFFER_SIZE );
hbwapi_SetLastError( GetLastError() );
if( dwResult )
{
PHB_ITEM pArray = hb_itemArrayNew( 0 ), pItem = NULL;
DWORD dwPos, dwStart;
dwPos = dwStart = 0;
while( lpTargetPath[ dwPos ] )
{
if( ! lpTargetPath[ ++dwPos ] )
{
pItem = HB_ITEMPUTSTRLEN( pItem, lpTargetPath + dwStart, dwPos - dwStart - 1 );
hb_arrayAdd( pArray, pItem );
dwStart = ++dwPos;
}
}
hb_itemRelease( pItem );
hb_itemReturnRelease( pArray );
}
else
hb_reta( 0 );
hb_strfree( hDeviceName );
hb_xfree( lpTargetPath );
#else
hb_reta( 0 );
#endif
}