From 5a89aba52247fa897a10f93342edf285f94c9cc2 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 2 Oct 2008 08:09:20 +0000 Subject: [PATCH] 2008-10-02 10:08 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/hbct/ctmisc.prg + Added dummy functions: GETKXLAT(), SETKXLAT(), DSETKBIOS() --- harbour/ChangeLog | 5 +++++ harbour/contrib/hbct/ctmisc.prg | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 26ee522b0e..90404c96c5 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-10-02 10:08 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/hbct/ctmisc.prg + + Added dummy functions: + GETKXLAT(), SETKXLAT(), DSETKBIOS() + 2008-10-02 08:57 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * source/rtl/dbedit.prg ! Fixed to use local Skipped() function. diff --git a/harbour/contrib/hbct/ctmisc.prg b/harbour/contrib/hbct/ctmisc.prg index bdd55510e0..2a6685fafd 100644 --- a/harbour/contrib/hbct/ctmisc.prg +++ b/harbour/contrib/hbct/ctmisc.prg @@ -110,3 +110,24 @@ FUNCTION DOSPARAM() FUNCTION EXENAME() RETURN HB_ARGV( 0 ) + +/* NOTE: Dummy */ +FUNCTION getkxlat( nKeyValue ) + RETURN nKeyValue + +/* NOTE: Dummy */ +FUNCTION setkxlat( nOrgKeyValue, nNewKeyValue ) + LOCAL lAccepted := .F. + + HB_SYMBOL_UNUSED( nOrgKeyValue ) + HB_SYMBOL_UNUSED( nNewKeyValue ) + + RETURN lAccepted + +/* NOTE: Dummy */ +FUNCTION dsetkbios( lNewKeyboardMode ) + STATIC s_lKeyboardMode := .T. + + HB_SYMBOL_UNUSED( lNewKeyboardMode ) + + RETURN s_lKeyboardMode