Ignore:
Timestamp:
Mar 27, 2002, 11:56:25 AM (23 years ago)
Author:
sandervl
Message:

move process id setup to OSLibWinQueryWindowProcess

File:
1 edited

Legend:

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

    r8097 r8126  
    1 /* $Id: oslibwin.cpp,v 1.116 2002-03-18 13:03:53 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.117 2002-03-27 10:56:24 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    2222#include <winconst.h>
    2323#include <winuser32.h>
     24#include <wprocess.h>
    2425#include "oslibwin.h"
    2526#include "oslibutil.h"
     
    805806BOOL OSLibWinQueryWindowProcess(HWND hwnd, ULONG *pid, ULONG *tid)
    806807{
    807    return WinQueryWindowProcess(hwnd, pid, tid);
     808   BOOL ret;
     809
     810   ret = WinQueryWindowProcess(hwnd, pid, tid);
     811   *tid = MAKE_THREADID(*pid, *tid);
     812   return ret;
    808813}
    809814//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.