2008-10-02 10:08 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* contrib/hbct/ctmisc.prg
    + Added dummy functions:
      GETKXLAT(), SETKXLAT(), DSETKBIOS()
This commit is contained in:
Viktor Szakats
2008-10-02 08:09:20 +00:00
parent bb94b2aeaf
commit 5a89aba522
2 changed files with 26 additions and 0 deletions

View File

@@ -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.

View File

@@ -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