Ignore:
Timestamp:
Aug 20, 2000, 11:46:16 AM (25 years ago)
Author:
sandervl
Message:

compile fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/wine/undocshell.h

    r4033 r4054  
    1 /* $Id: undocshell.h,v 1.4 2000-08-18 02:04:23 phaller Exp $ */
     1/* $Id: undocshell.h,v 1.5 2000-08-20 09:46:16 sandervl Exp $ */
    22#ifndef __WINE_UNDOCSHELL_H
    33#define __WINE_UNDOCSHELL_H
     
    385385/* FileMenu_InsertUsingPidl callback function */
    386386//typedef void CALLBACK (*LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile);
    387 typedef void (CALLBACK *LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile);
     387#ifdef __WIN32OS2__
     388typedef void (* CALLBACK LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile);
     389#else
     390typedef void (CALLBACK * LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile);
     391#endif
    388392
    389393int WINAPI FileMenu_InsertUsingPidl(
     
    711715
    712716/* SHCreateShellFolderViewEx callback function */
     717#ifdef __WIN32OS2__
     718typedef HRESULT (* CALLBACK LPFNSFVCALLBACK)(
     719#else
    713720typedef HRESULT (CALLBACK* LPFNSFVCALLBACK)(
     721#endif
    714722        DWORD dwUser,
    715723        LPSHELLFOLDER pshf,
     
    903911/* SHCreateDefClassObject callback function */
    904912//typedef HRESULT CALLBACK (*LPFNCDCOCALLBACK)(
     913#ifdef __WIN32OS2__
     914typedef HRESULT (* CALLBACK LPFNCDCOCALLBACK)(
     915#else
    905916typedef HRESULT (CALLBACK *LPFNCDCOCALLBACK)(
     917#endif
    906918        LPUNKNOWN pUnkOuter,
    907919        REFIID riidObject,
Note: See TracChangeset for help on using the changeset viewer.