Ignore:
Timestamp:
Mar 23, 2011, 11:44:45 PM (14 years ago)
Author:
dmik
Message:

shell32: systray: Added support for the "TaskbarCreated" system notificaiton message that Windows broadcasts to all top-level windows when the taskbar (xcenter in case of OS/2) is (re)started. This allows applications supporting this message (including Java applications) recreate their taskbar icons.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/auxthread.cpp

    r21599 r21602  
    3838    {
    3939        AUXMSG *msg = (AUXMSG *)mp1;
     40        dprintf(("USER32: AuxWndProc: pfn %p, arg1 %x, arg2 %x, arg3 %x, "
     41                 "arg4 %x, del %d", msg->pfn, msg->arg1, msg->arg2,
     42                 msg->arg3, msg->arg4, msg->del));
     43
    4044        MRESULT mrc = msg->pfn(msg->arg1, msg->arg2, msg->arg3, msg->arg4);
    4145        if (msg->del)
     
    98102                             PVOID arg3, PVOID arg4, PVOID *ret)
    99103{
     104    dprintf(("USER32: DoRunOnAuxThread: pfn %p, arg1 %x, arg2 %x, arg3 %x, "
     105             "arg4 %x, ret %x", pfn, arg1, arg2, arg3, arg4, ret));
     106
    100107    APIRET arc;
    101108
     
    106113        if (arc != NO_ERROR)
    107114        {
    108             dprintf(("USER32: AuxThread: DosCreateEventSem failed with %d",
     115            dprintf(("USER32: DoRunOnAuxThread: DosCreateEventSem failed with %d",
    109116                     arc));
    110117            return FALSE;
     
    127134            else
    128135            {
    129                 dprintf(("USER32: AuxThread: CreateThread() failed with %x",
     136                dprintf(("USER32: DoRunOnAuxThread: CreateThread() failed with %x",
    130137                         GetLastError()));
    131138
Note: See TracChangeset for help on using the changeset viewer.