Ignore:
Timestamp:
Nov 24, 1999, 8:32:23 PM (26 years ago)
Author:
sandervl
Message:

desktop + misc updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.h

    r1801 r1831  
    1 /* $Id: win32wbase.h,v 1.44 1999-11-21 17:07:52 cbratschi Exp $ */
     1/* $Id: win32wbase.h,v 1.45 1999-11-24 19:32:23 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    3333#define CheckMagicDword(a)      (a==WIN32PM_MAGIC)
    3434
    35 #define WIN32APP_USERMSGBASE            0x1000
    36 
    3735typedef struct {
    3836        USHORT           cb;
     
    4139} CUSTOMWNDDATA;
    4240
     41#define WIN32APP_USERMSGBASE      0x1000
     42#define WIN32APP_POSTMSG          0x6666
     43
    4344typedef struct
    4445{
     
    4647        ULONG           wParam;
    4748        ULONG           lParam;
     49        ULONG           fUnicode;
    4850} POSTMSG_PACKET;
    4951
    5052#define WM_WIN32_POSTMESSAGEA   0x4000
    5153#define WM_WIN32_POSTMESSAGEW   0x4001
     54
     55#define BROADCAST_SEND          0
     56#define BROADCAST_POST          1
    5257
    5358class Win32BaseWindow : public GenericObject, public ChildWindow
     
    204209       BOOL     PostMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
    205210       BOOL     PostMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
     211       void     PostMessage(POSTMSG_PACKET *packet);
     212static BOOL     PostThreadMessageA(ULONG threadid, UINT msg, WPARAM wParam, LPARAM lParam);
     213static BOOL     PostThreadMessageW(ULONG threadid, UINT msg, WPARAM wParam, LPARAM lParam);
     214static LRESULT  BroadcastMessageA(int type, UINT msg, WPARAM wParam, LPARAM lParam);
     215static LRESULT  BroadcastMessageW(int type, UINT msg, WPARAM wParam, LPARAM lParam);
     216
    206217       LRESULT  DefWindowProcA(UINT msg, WPARAM wParam, LPARAM lParam);
    207218       LRESULT  DefWindowProcW(UINT msg, WPARAM wParam, LPARAM lParam);
Note: See TracChangeset for help on using the changeset viewer.