Ignore:
Timestamp:
Sep 27, 1999, 12:24:51 AM (26 years ago)
Author:
sandervl
Message:

Keyboard msg fixes

File:
1 edited

Legend:

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

    r1066 r1067  
    1 /* $Id: oslibmsg.cpp,v 1.2 1999-09-26 16:09:04 dengert Exp $ */
     1/* $Id: oslibmsg.cpp,v 1.3 1999-09-26 22:24:28 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    2323#include "oslibutil.h"
    2424#include "timer.h"
     25#include <thread.h>
     26#include <wprocess.h>
    2527
    2628QMSG *MsgThreadPtr = 0;
     
    5456//******************************************************************************
    5557//TODO!!!
     58//Signal that the incoming messages in pmwindow need to be translated
     59//(i.e. PM WM_CHAR when translated generates WM_CHAR messages, otherwise
     60// WM_KEYUP/DOWN (etc))
    5661//******************************************************************************
    5762ULONG TranslateWinMsg(ULONG msg)
    5863{
     64 THDB *thdb;
     65
     66  thdb = GetThreadTHDB();
     67  if(thdb) {
     68        thdb->fMsgTranslated = TRUE;
     69  }
     70 
    5971  return 0;
    6072}
Note: See TracChangeset for help on using the changeset viewer.