Files
harbour-core/src/common/hbwince.c
Viktor Szakats 58faf91453 2016-01-14 19:17 UTC+0100 Viktor Szakats (vszakats users.noreply.github.com)
* *
    % remove brandings and homepage [1] from copyright header. Pass 1 - using script.
      [1] nobody has access to it anymore AFAIK - and it's also just
          a redirect since long
    ! update url in copyright header
    ; this should make the diff between 3.4 and 3.2 easier to manage
2016-01-14 19:18:17 +01:00

294 lines
7.5 KiB
C

/*
* Wrapper functions for WinCE
*
* Some ideas and partially source code of functions
* like GetEnvironmentVariableA() taken from ruby
* wince.c
* author : uema2
* date : Nov 30, 2002
* You can freely use, copy, modify, and redistribute
* the whole contents.
*
* Copyright 2007 Przemyslaw Czerpak <druzus / at / priv.onet.pl>
*
* 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 software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site https://www.gnu.org/).
*
* 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 "hbapi.h"
#if defined( HB_OS_WIN_CE )
#include "hbwince.h"
DWORD WINAPI GetEnvironmentVariableW( LPCWSTR name, LPWSTR value, DWORD size )
{
/* use registry instead of "environment variable". */
HKEY hk;
LONG lret;
DWORD dwType = REG_SZ, result = 0;
lret = RegOpenKeyEx( HKEY_LOCAL_MACHINE, TEXT( "Software\\harbour_mswince" ), 0, KEY_QUERY_VALUE, &hk );
if( lret != ERROR_SUCCESS )
{
if( value && size )
value[ 0 ] = '\0';
return 0;
}
result = size * sizeof( TCHAR );
lret = RegQueryValueExW( hk, name, NULL, &dwType, ( LPBYTE ) value, &result );
RegCloseKey( hk );
if( lret != ERROR_SUCCESS )
{
if( value && size )
value[ 0 ] = '\0';
return value ? 0 : result;
}
return result;
}
BOOL WINAPI SetEnvironmentVariableW( LPCWSTR name, LPCWSTR value )
{
HB_SYMBOL_UNUSED( name );
HB_SYMBOL_UNUSED( value );
/* TODO: */
return FALSE;
}
BOOL WINAPI GetUserNameW( LPWSTR buffer, LPDWORD len )
{
if( len && buffer )
buffer[ 0 ] = '\0';
return FALSE;
}
BOOL WINAPI GetComputerNameW( LPWSTR buffer, LPDWORD len )
{
if( len && buffer )
buffer[ 0 ] = '\0';
return FALSE;
}
DWORD WINAPI GetCurrentDirectoryW( DWORD len, LPWSTR buffer )
{
if( len && buffer )
buffer[ 0 ] = '\0';
return 0;
}
BOOL WINAPI SetCurrentDirectoryW( LPCWSTR dirname )
{
HB_SYMBOL_UNUSED( dirname );
return FALSE;
}
BOOL WINAPI LockFile( HANDLE hFile,
DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh,
DWORD nNumberOfBytesToLockLow, DWORD nNumberOfBytesToLockHigh )
{
HB_SYMBOL_UNUSED( hFile );
HB_SYMBOL_UNUSED( dwFileOffsetLow );
HB_SYMBOL_UNUSED( dwFileOffsetHigh );
HB_SYMBOL_UNUSED( nNumberOfBytesToLockLow );
HB_SYMBOL_UNUSED( nNumberOfBytesToLockHigh );
return TRUE;
}
BOOL WINAPI UnlockFile( HANDLE hFile,
DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh,
DWORD nNumberOfBytesToUnlockLow, DWORD nNumberOfBytesToUnlockHigh )
{
HB_SYMBOL_UNUSED( hFile );
HB_SYMBOL_UNUSED( dwFileOffsetLow );
HB_SYMBOL_UNUSED( dwFileOffsetHigh );
HB_SYMBOL_UNUSED( nNumberOfBytesToUnlockLow );
HB_SYMBOL_UNUSED( nNumberOfBytesToUnlockHigh );
return TRUE;
}
/* LockFileEx() and UnlockFileEx() functions are present in COREDLL6
*/
BOOL WINAPI LockFileEx( HANDLE hFile,
DWORD dwFlags, DWORD dwReserved,
DWORD nNumberOfBytesToLockLow,
DWORD nNumberOfBytesToLockHigh, LPOVERLAPPED lpOverlapped )
{
HB_SYMBOL_UNUSED( hFile );
HB_SYMBOL_UNUSED( dwFlags );
HB_SYMBOL_UNUSED( dwReserved );
HB_SYMBOL_UNUSED( nNumberOfBytesToLockLow );
HB_SYMBOL_UNUSED( nNumberOfBytesToLockHigh );
HB_SYMBOL_UNUSED( lpOverlapped );
return TRUE;
}
BOOL WINAPI UnlockFileEx( HANDLE hFile, DWORD dwReserved,
DWORD nNumberOfBytesToUnlockLow,
DWORD nNumberOfBytesToUnlockHigh, LPOVERLAPPED lpOverlapped )
{
HB_SYMBOL_UNUSED( hFile );
HB_SYMBOL_UNUSED( dwReserved );
HB_SYMBOL_UNUSED( nNumberOfBytesToUnlockLow );
HB_SYMBOL_UNUSED( nNumberOfBytesToUnlockHigh );
HB_SYMBOL_UNUSED( lpOverlapped );
return TRUE;
}
UINT WINAPI SetErrorMode( UINT mode )
{
HB_SYMBOL_UNUSED( mode );
return 0;
}
HANDLE WINAPI GetStdHandle( DWORD nStdHandle )
{
HB_SYMBOL_UNUSED( nStdHandle );
return NULL;
}
DWORD WINAPI GetFileType( HANDLE handle )
{
HB_SYMBOL_UNUSED( handle );
return 0;
}
BOOL WINAPI Beep( DWORD dwFreq, DWORD dwDurat )
{
HB_SYMBOL_UNUSED( dwFreq );
HB_SYMBOL_UNUSED( dwDurat );
MessageBeep( 0xFFFFFFFF );
return FALSE;
}
int WINAPI SetTextCharacterExtra( HDC hdc, int i )
{
HB_SYMBOL_UNUSED( hdc );
HB_SYMBOL_UNUSED( i );
return 0;
}
BOOL WINAPI GetKeyboardState( PBYTE p )
{
HB_SYMBOL_UNUSED( p );
return FALSE;
}
BOOL WINAPI SetKeyboardState( PBYTE p )
{
HB_SYMBOL_UNUSED( p );
return FALSE;
}
#if defined( __MINGW32CE__ ) || ( defined( _MSC_VER ) && ( _MSC_VER <= 1310 ) )
int WINAPI MulDiv( int nNumber, int nNumerator, int nDenominator )
{
if( nDenominator )
{
HB_MAXINT llResult = ( HB_MAXINT ) nNumber * nNumerator / nDenominator;
if( HB_LIM_INT32( llResult ) )
return ( int ) llResult;
}
return -1;
}
#endif /* __MINGW32CE__ */
#if defined( __POCC__ ) || ( defined( _MSC_VER ) && ( _MSC_VER <= 1500 ) )
void abort( void )
{
TerminateProcess( GetCurrentProcess(), 0 );
}
#endif
BOOL WINAPI Arc( HDC h, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8 )
{
HB_SYMBOL_UNUSED( h );
HB_SYMBOL_UNUSED( p1 );
HB_SYMBOL_UNUSED( p2 );
HB_SYMBOL_UNUSED( p3 );
HB_SYMBOL_UNUSED( p4 );
HB_SYMBOL_UNUSED( p5 );
HB_SYMBOL_UNUSED( p6 );
HB_SYMBOL_UNUSED( p7 );
HB_SYMBOL_UNUSED( p8 );
return FALSE;
}
int WINAPI FrameRect( HDC h, LPCRECT r, HBRUSH hb )
{
HB_SYMBOL_UNUSED( h );
HB_SYMBOL_UNUSED( r );
HB_SYMBOL_UNUSED( hb );
return 0;
}
BOOL WINAPI FloodFill( HDC h, int x, int y, COLORREF c )
{
HB_SYMBOL_UNUSED( h );
HB_SYMBOL_UNUSED( x );
HB_SYMBOL_UNUSED( y );
HB_SYMBOL_UNUSED( c );
return FALSE;
}
#endif /* HB_OS_WIN_CE */