Ignore:
Timestamp:
Apr 11, 2003, 4:22:06 PM (22 years ago)
Author:
sandervl
Message:

KSO: Implemented WM_COPYDATA

File:
1 edited

Legend:

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

    r9927 r10012  
    6666    DWORD        selman_list;    /* 1-n  10 Selector manager list */
    6767    DWORD        user_ptr;       /* 12n  14 User pointer */
    68 /* end of NT_TIB */ 
     68/* end of NT_TIB */
    6969    struct _TEB *self;           /* 12-  18 Pointer to this structure */
    7070    WORD         tibflags;       /* 1!n  1c Flags (NT: EnvironmentPointer) */
     
    130130              ULONG          newWindow;      // Pointer to window object of window that was just created
    131131              void*          pWsockData;     // Winsock data pointer (NULL if unused)
    132            
     132
    133133              // used for PM-to-Win32 message translation
    134134              PVOID          pMessageBuffer; // MessageBuffer object
     
    145145              BOOL           fWM_SETFOCUS;   // set during WM_SETFOCUS message processing
    146146              HWND           hwndFocus;      // set during WM_SETFOCUS message processing
    147            
     147
    148148              DWORD          pidDebuggee;    // process id of debuggee
    149149              DWORD          logfile;        // last FILE ptr used for logging (for exception handling in vfprintf)
     
    152152              BOOL           fIgnoreMsgs;    // set to true if waiting in WaitForSingleObject
    153153
    154               CONTEXT        context;        // thread context 
     154              CONTEXT        context;        // thread context
    155155              char           savedopcode;    // saved instruction
    156156              LPVOID         lpAlias;        // alias
    157157              DWORD          dwAliasOffset;  // offset
     158
     159              /** @name Special message handling.
     160               * @{ */
     161              /** WM_COPYDATA - Must keep it around while it's being processed.
     162               * Freeing it upon the arrival. Nested WM_COPYDATA isn't supported.
     163               */
     164              void *         pWM_COPYDATA;
     165              //@}
     166
    158167#ifdef DEBUG
    159168              // used for call stack tracking
Note: See TracChangeset for help on using the changeset viewer.