Ignore:
Timestamp:
Feb 14, 2002, 1:10:12 PM (24 years ago)
Author:
sandervl
Message:

extended logging added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/shell32_odin.cpp

    r4544 r7904  
    1 /* $Id: shell32_odin.cpp,v 1.2 2000-10-28 14:36:48 sandervl Exp $ */
     1/* $Id: shell32_odin.cpp,v 1.3 2002-02-14 12:10:10 sandervl Exp $ */
    22
    33/*
     
    250250 */
    251251
    252 ODINFUNCTION4(BOOL,ShellAboutA, HWND,   hWnd,
    253                                LPCSTR, szApp,
    254                                LPCSTR, szOtherStuff,
    255                                HICON,  hIcon )
     252BOOL WIN32API ShellAboutA(HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff,
     253                          HICON  hIcon )
    256254{   ABOUT_INFO info;
    257255    HRSRC hRes;
     
    275273 * ShellAboutW                              [SHELL32.244]
    276274 */
    277 ODINFUNCTION4(BOOL,ShellAboutW, HWND,    hWnd,
    278                                LPCWSTR, szApp,
    279                                LPCWSTR, szOtherStuff,
    280                                HICON,   hIcon )
     275BOOL WIN32API ShellAboutW(HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff,
     276                          HICON  hIcon )
    281277{   INT ret;
    282278    ABOUT_INFO info;
     
    306302 * executable) and patch parameters if needed.
    307303 */
    308 ODINFUNCTION3(HICON,     ExtractAssociatedIconA,
    309               HINSTANCE, hInst,
    310               LPSTR,     lpIconPath,
    311               LPWORD,    lpiIcon)
     304HICON WIN32API ExtractAssociatedIconA(HINSTANCE hInst, LPSTR lpIconPath,
     305                                      LPWORD lpiIcon)
    312306{
    313307   HICON hIcon;
     
    983977 */
    984978
    985 ODINFUNCTION6(HINSTANCE, ShellExecuteA, HWND,   hWnd,
    986                                         LPCSTR, lpOperation,
    987                                         LPCSTR, lpFile,
    988                                         LPCSTR, lpParameters,
    989                                         LPCSTR, lpDirectory,
    990                                         INT,    iShowCmd )
     979HINSTANCE WIN32API ShellExecuteA(HWND hWnd, LPCSTR lpOperation,
     980                                 LPCSTR lpFile,
     981                                 LPCSTR lpParameters,
     982                                 LPCSTR lpDirectory,
     983                                 INT    iShowCmd )
    991984{   HINSTANCE retval=31;
    992985    char old_dir[1024];
     
    11191112 *****************************************************************************/
    11201113
    1121 ODINFUNCTION4(UINT,   DragQueryFileAorW,
    1122               HDROP,  hDrop,
    1123               UINT,   iFile,
    1124               LPTSTR, lpszFile,
    1125               UINT,   cch)
     1114UINT WIN32API DragQueryFileAorW(HDROP hDrop, UINT iFile, LPTSTR lpszFile,
     1115                                UINT cch)
    11261116{
    11271117  // @@@PH maybe they want automatic determination here
Note: See TracChangeset for help on using the changeset viewer.