Changeset 421


Ignore:
Timestamp:
Aug 5, 1999, 7:18:09 PM (26 years ago)
Author:
phaller
Message:

Add: SHELL32.59 RestartDialog stub added. IE2 with URL.DLL from NT4 can load now.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/changelog

    r420 r421  
    1  /* $Id: changelog,v 1.71 1999-08-05 13:14:18 phaller Exp $ */
     1 /* $Id: changelog,v 1.72 1999-08-05 17:18:08 phaller Exp $ */
    22
    33 99-08-05: Patrick Haller <phaller@gmx.net>
    4         - KERNEL32: interactive control over UnhandledExceptionFilter
     4        - KERNEL32:  interactive control over UnhandledExceptionFilter
     5        - SHELL3232: RestartDialog @59 stub added. IE2 can load now with NT4's URL.DLL.
    56
    67 99-08-05: Sander van Leeuwen <sandervl@xs4all.nl>
  • TabularUnified trunk/src/shell32/shell32.def

    r273 r421  
    1 ; $Id: shell32.def,v 1.11 1999-07-05 13:49:24 phaller Exp $
     1; $Id: shell32.def,v 1.12 1999-08-05 17:18:09 phaller Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    6565    PathGetDriveNumber                = _PathGetDriveNumber@4                 @57
    6666    ParseField                        = _ParseFieldA@16                       @58
    67 ;   RestartDialog                     = _RestartDialog@12                     @59
     67    RestartDialog                     = _RestartDialog@12                     @59
    6868    ExitWindowsDialog                 = _ExitWindowsDialog@4                  @60
    6969    RunFileDlg                        = _RunFileDlg@24                        @61
  • TabularUnified trunk/src/shell32/unknown.cpp

    r186 r421  
    1 /* $Id: unknown.cpp,v 1.4 1999-06-25 08:07:13 phaller Exp $ */
     1/* $Id: unknown.cpp,v 1.5 1999-08-05 17:18:09 phaller Exp $ */
    22
    33/*
     
    184184}
    185185
     186
     187/*****************************************************************************
     188 * Name      : DWORD RestartDialog
     189 * Purpose   :
     190 * Parameters: unknown, probably wrong
     191 * Variables :
     192 * Result    :
     193 * Remark    : SHELL32.59
     194 * Status    : UNTESTED STUB UNKNOWN
     195 *
     196 * Author    : Patrick Haller [Tue, 1998/06/15 03:00]
     197 *****************************************************************************/
     198
     199DWORD WIN32API RestartDialog(DWORD x1,
     200                             DWORD x2,
     201                             DWORD x3)
     202{
     203  dprintf(("SHELL32: RestartDialog(%08xh,%08xhz) not implemented.\n",
     204           x1,
     205           x2,
     206           x3));
     207
     208  return (0);
     209}
Note: See TracChangeset for help on using the changeset viewer.