Ignore:
Timestamp:
Dec 29, 1999, 3:37:19 PM (26 years ago)
Author:
sandervl
Message:

PostMessage memory leak fixed

File:
1 edited

Legend:

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

    r2204 r2250  
    1 /* $Id: win32wbase.h,v 1.58 1999-12-26 17:30:19 cbratschi Exp $ */
     1/* $Id: win32wbase.h,v 1.59 1999-12-29 14:37:18 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    4141#define WIN32APP_USERMSGBASE      0x1000
    4242#define WIN32APP_POSTMSG          0x1000
     43#define WIN32MSG_MAGICA           0x12345678
     44#define WIN32MSG_MAGICW           0x12345679
    4345
    4446typedef struct
     
    4749        ULONG           wParam;
    4850        ULONG           lParam;
    49         ULONG           fUnicode;
    5051} POSTMSG_PACKET;
    5152
     
    8283         ULONG  MsgHitTest(MSG *msg);
    8384         ULONG  MsgNCPaint();
    84          ULONG  DispatchMsg(MSG *msg);
     85         ULONG  DispatchMsgA(MSG *msg);
     86         ULONG  DispatchMsgW(MSG *msg);
    8587
    8688         ULONG  MsgSetText(LPSTR lpsz, LONG cch);
     
    205207       LRESULT  SendMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
    206208       LRESULT  SendMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
    207        BOOL     PostMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
    208        BOOL     PostMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
    209        ULONG    PostMessage(POSTMSG_PACKET *packet);
    210 static BOOL     PostThreadMessageA(ULONG threadid, UINT msg, WPARAM wParam, LPARAM lParam);
    211 static BOOL     PostThreadMessageW(ULONG threadid, UINT msg, WPARAM wParam, LPARAM lParam);
    212209static LRESULT  BroadcastMessageA(int type, UINT msg, WPARAM wParam, LPARAM lParam);
    213210static LRESULT  BroadcastMessageW(int type, UINT msg, WPARAM wParam, LPARAM lParam);
Note: See TracChangeset for help on using the changeset viewer.