Ignore:
Timestamp:
Mar 24, 2001, 4:40:56 PM (24 years ago)
Author:
sandervl
Message:

added GetAsyncKeyState

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/user32.cpp

    r5196 r5367  
    1 /* $Id: user32.cpp,v 1.92 2001-02-19 21:43:12 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.93 2001-03-24 15:40:56 sandervl Exp $ */
    22
    33/*
     
    11581158  return(TRUE);
    11591159}
    1160 //******************************************************************************
    1161 //SvL: 24-6-'97 - Added
    1162 //TODO: Not implemented
    1163 //******************************************************************************
    1164 WORD WIN32API GetAsyncKeyState(INT nVirtKey)
    1165 {
    1166     dprintf2(("USER32:  GetAsyncKeyState Not implemented\n"));
    1167     return 0;
    1168 }
    11691160/*****************************************************************************
    11701161 * Name      : UINT WIN32API GetKBCodePage
     
    12051196}
    12061197//******************************************************************************
    1207 //SvL: 24-6-'97 - Added
    12081198//******************************************************************************
    12091199SHORT WIN32API GetKeyState( int nVirtKey)
    12101200{
    1211     dprintf2(("USER32:  GetKeyState %d\n", nVirtKey));
     1201    dprintf2(("USER32: GetKeyState %x", nVirtKey));
    12121202    return O32_GetKeyState(nVirtKey);
    12131203}
     1204//******************************************************************************
     1205//******************************************************************************
     1206WORD WIN32API GetAsyncKeyState(INT nVirtKey)
     1207{
     1208    dprintf2(("USER32: GetAsyncKeyState %x", nVirtKey));
     1209    return O32_GetAsyncKeyState(nVirtKey);
     1210}
     1211
    12141212/*****************************************************************************
    12151213 * Name      : VOID WIN32API keybd_event
Note: See TracChangeset for help on using the changeset viewer.