Changeset 4054 for trunk/include/win/wine/undocshell.h
- Timestamp:
- Aug 20, 2000, 11:46:16 AM (25 years ago)
- 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 phallerExp $ */1 /* $Id: undocshell.h,v 1.5 2000-08-20 09:46:16 sandervl Exp $ */ 2 2 #ifndef __WINE_UNDOCSHELL_H 3 3 #define __WINE_UNDOCSHELL_H … … 385 385 /* FileMenu_InsertUsingPidl callback function */ 386 386 //typedef void CALLBACK (*LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile); 387 typedef void (CALLBACK *LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile); 387 #ifdef __WIN32OS2__ 388 typedef void (* CALLBACK LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile); 389 #else 390 typedef void (CALLBACK * LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile); 391 #endif 388 392 389 393 int WINAPI FileMenu_InsertUsingPidl( … … 711 715 712 716 /* SHCreateShellFolderViewEx callback function */ 717 #ifdef __WIN32OS2__ 718 typedef HRESULT (* CALLBACK LPFNSFVCALLBACK)( 719 #else 713 720 typedef HRESULT (CALLBACK* LPFNSFVCALLBACK)( 721 #endif 714 722 DWORD dwUser, 715 723 LPSHELLFOLDER pshf, … … 903 911 /* SHCreateDefClassObject callback function */ 904 912 //typedef HRESULT CALLBACK (*LPFNCDCOCALLBACK)( 913 #ifdef __WIN32OS2__ 914 typedef HRESULT (* CALLBACK LPFNCDCOCALLBACK)( 915 #else 905 916 typedef HRESULT (CALLBACK *LPFNCDCOCALLBACK)( 917 #endif 906 918 LPUNKNOWN pUnkOuter, 907 919 REFIID riidObject,
Note:
See TracChangeset
for help on using the changeset viewer.