Ignore:
Timestamp:
Jul 15, 1999, 8:03:03 PM (26 years ago)
Author:
sandervl
Message:

Send/PostMessage changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/win32wnd.h

    r300 r309  
    1 /* $Id: win32wnd.h,v 1.2 1999-07-14 08:35:37 sandervl Exp $ */
     1/* $Id: win32wnd.h,v 1.3 1999-07-15 18:03:03 sandervl Exp $ */
    22/*
    33 * Win32 Window Code for OS/2
     
    3333        ULONG           win32CreateStruct;      //or dialog create dword
    3434} CUSTOMWNDDATA;
     35
     36typedef struct
     37{
     38        ULONG           Msg;
     39        ULONG           wParam;
     40        ULONG           lParam;
     41} POSTMSG_PACKET;
     42
     43#define WM_WIN32_POSTMESSAGEA   0x4000
     44#define WM_WIN32_POSTMESSAGEW   0x4001
    3545
    3646class Win32Window : public GenericObject
     
    7484         void   setWindowId(DWORD id)           { windowId = id; };
    7585
     86         DWORD  getFlags()                      { return flags; };
     87         void   setFlags(DWORD newflags)        { flags = newflags; };
     88
    7689       LRESULT  SendMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
    7790       LRESULT  SendMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
     91       LRESULT  PostMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
     92       LRESULT  PostMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
    7893       LRESULT  DefWindowProcA(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
    7994       LRESULT  DefWindowProcW(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
Note: See TracChangeset for help on using the changeset viewer.