Changeset 3522 for trunk/include


Ignore:
Timestamp:
May 12, 2000, 8:04:12 PM (25 years ago)
Author:
sandervl
Message:

header updates

Location:
trunk/include/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/queue.h

    r4 r3522  
    1 /* $Id: queue.h,v 1.1 1999-05-24 20:19:18 ktk Exp $ */
     1/* $Id: queue.h,v 1.2 2000-05-12 18:04:11 sandervl Exp $ */
    22
    33/*
     
    1313#include "winuser.h"
    1414#include "thread.h"
    15 
    16 
    17   /* Message as stored in the queue (contains the extraInfo field) */
    18 typedef struct tagQMSG
    19 {
    20     MSG   msg;
    21     DWORD   extraInfo;  /* Only in 3.1 */
    22    
    23     struct tagQMSG *nextMsg;
    24     struct tagQMSG *prevMsg;
    25 } QMSG;
    2615
    2716
  • trunk/include/win/thread.h

    r3124 r3522  
    1 /* $Id: thread.h,v 1.15 2000-03-16 19:16:38 sandervl Exp $ */
     1/* $Id: thread.h,v 1.16 2000-05-12 18:04:12 sandervl Exp $ */
    22
    33/*
     
    4949#define TEBF_WIN32  0x0001
    5050#define TEBF_TRAP   0x0002
     51
     52#ifndef OS2DEF_INCLUDED
     53   /* QMSG structure */
     54   typedef struct _QMSG    /* qmsg */
     55   {
     56      HWND    hwnd;
     57      ULONG   msg;
     58      ULONG   mp1;
     59      ULONG   mp2;
     60      ULONG   time;
     61      POINTL  ptl;
     62      ULONG   reserved;
     63   } QMSG;
     64#endif
    5165
    5266/* Thread database */
     
    116130    BOOL           fTranslated;    // WM_CHAR already translated or not
    117131    ULONG          msgstate;       // odd -> dispatchmessage called, even -> not called
     132    QMSG           os2msg;         // original os2 msg (received with Get- or PeekMessage)
     133    MSG            winmsg;         // temporary storage for translated os2 msg (used in DispatchMessage)
    118134    MSG            msg;            // Used by message translation to store translated PM message (sent to win32 window proc in pmwindow.cpp)
    119135    MSG            msgWCHAR;       // Used to store extra WM_CHAR message generated by TranslateMessage
Note: See TracChangeset for help on using the changeset viewer.