Refactoring of Wine DLL import
svn path=/trunk/; revision=7409
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.197 2004/01/01 17:09:30 sedwards Exp $
|
||||
# $Id: Makefile,v 1.198 2004/01/02 19:49:44 gvg Exp $
|
||||
#
|
||||
# Global makefile
|
||||
#
|
||||
|
@ -32,7 +32,7 @@ BUS = acpi isapnp pci
|
|||
LIB_FSLIB = vfatlib
|
||||
|
||||
# Static libraries
|
||||
LIB_STATIC = string rosrtl epsapi zlib
|
||||
LIB_STATIC = string rosrtl epsapi uuid zlib
|
||||
|
||||
# Keyboard layout libraries
|
||||
DLLS_KBD = kbdus kbdgr kbdfr kbduk
|
||||
|
@ -42,9 +42,9 @@ DLLS_KBD = kbdus kbdgr kbdfr kbduk
|
|||
# epsapi psapi richedit rpcrt4 secur32 user32 version ws2help ws2_32 wsock32 wshirda mswsock
|
||||
# imagehlp
|
||||
DLLS = libwine advapi32 cards crtdll fmifs freetype gdi32 kernel32 packet lzexpand \
|
||||
msafd msvcrt msvcrt20 ntdll psapi richedit rpcrt4 secur32 syssetup twain user32 version \
|
||||
winspool ws2help ws2_32 wsock32 wshirda iphlpapi msgina mswsock msimg32 d3d8thk \
|
||||
winmm comctl32 $(DLLS_KBD)
|
||||
msafd msvcrt msvcrt20 ntdll ole32 psapi richedit rpcrt4 secur32 shell32 shlwapi \
|
||||
syssetup twain unicode user32 version winspool ws2help ws2_32 wsock32 wshirda \
|
||||
iphlpapi msgina mswsock msimg32 d3d8thk winmm comctl32 $(DLLS_KBD)
|
||||
|
||||
# Uncomment this after the update W32API headers will be released.
|
||||
# DLLS += ole32 shlwapi
|
||||
|
|
|
@ -48,6 +48,7 @@ drivers\net\tdi\tdi.sys 2
|
|||
drivers\net\wshtcpip\wshtcpip.dll 1
|
||||
drivers\net\dd\ne2000\ne2000.sys 2
|
||||
lib\advapi32\advapi32.dll 1
|
||||
lib\comctl32\comctl32.dll 1
|
||||
lib\crtdll\crtdll.dll 1
|
||||
lib\fmifs\fmifs.dll 1
|
||||
lib\freetype\freetype.dll 1
|
||||
|
@ -63,9 +64,13 @@ lib\msgina\msgina.dll 1
|
|||
lib\msvcrt\msvcrt.dll 1
|
||||
lib\msvcrt\msvcrt20.dll 1
|
||||
lib\ntdll\ntdll.dll 1
|
||||
lib\ole32\ole32.dll 1
|
||||
lib\secur32\secur32.dll 1
|
||||
lib\shell32\shell32.dll 1
|
||||
lib\shlwapi\shlwapi.dll 1
|
||||
lib\syssetup\syssetup.dll 1
|
||||
lib\twain\twain_32.dll 1
|
||||
lib\unicode\libwine_unicode.dll 1
|
||||
lib\user32\user32.dll 1
|
||||
lib\version\version.dll 1
|
||||
lib\winspool\winspool.drv 1
|
||||
|
|
30
reactos/include/wine/basetsd.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Compilers that uses ILP32, LP64 or P64 type models
|
||||
* for both Win32 and Win64 are supported by this file.
|
||||
*
|
||||
* Copyright (C) 1999 Patrik Stridvall
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_BASETSD_H
|
||||
#define __WINE_BASETSD_H
|
||||
|
||||
#include_next <basetsd.h>
|
||||
|
||||
typedef signed short INT16, *PINT16;
|
||||
typedef unsigned short UINT16, *PUINT16;
|
||||
|
||||
#endif /* !defined(__WINE_BASETSD_H) */
|
34
reactos/include/wine/cguid.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* Copyright (C) 2000 Peter Hunnisett
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_CGUID_H__
|
||||
#define __WINE_CGUID_H__
|
||||
|
||||
#include_next <cguid.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern const CLSID CLSID_StdGlobalInterfaceTable;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_CGUID_H__ */
|
|
@ -15,6 +15,22 @@ extern "C" {
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef SNDMSGA
|
||||
#ifdef __cplusplus
|
||||
#define SNDMSGA ::SendMessageA
|
||||
#else
|
||||
#define SNDMSGA SendMessageA
|
||||
#endif
|
||||
#endif /* ifndef SNDMSGA */
|
||||
|
||||
#ifndef SNDMSGW
|
||||
#ifdef __cplusplus
|
||||
#define SNDMSGW ::SendMessageW
|
||||
#else
|
||||
#define SNDMSGW SendMessageW
|
||||
#endif
|
||||
#endif /* ifndef SNDMSGA */
|
||||
|
||||
#ifndef SNDMSG
|
||||
#ifdef __cplusplus
|
||||
#define SNDMSG ::SendMessage
|
||||
|
@ -1677,6 +1693,7 @@ extern "C" {
|
|||
#define RBBIM_IDEALSIZE 512
|
||||
#define RBBIM_LPARAM 1024
|
||||
#define RBBIM_HEADERSIZE 2048
|
||||
#define RB_GETBANDINFO (WM_USER+5)
|
||||
#define RB_HITTEST (WM_USER+8)
|
||||
#define RB_GETRECT (WM_USER+9)
|
||||
#define RB_IDTOINDEX (WM_USER+16)
|
||||
|
@ -1721,11 +1738,9 @@ extern "C" {
|
|||
#ifdef UNICODE
|
||||
#define SB_SETTIPTEXT SB_SETTIPTEXTW
|
||||
#define SB_GETTIPTEXT SB_GETTIPTEXTW
|
||||
#define RB_GETBANDINFO RB_GETBANDINFOW
|
||||
#else
|
||||
#define SB_SETTIPTEXT SB_SETTIPTEXTA
|
||||
#define SB_GETTIPTEXT SB_GETTIPTEXTA
|
||||
#define RB_GETBANDINFO RB_GETBANDINFOA
|
||||
#endif
|
||||
#else
|
||||
#define RB_GETBANDINFO (WM_USER+5)
|
||||
|
@ -2350,7 +2365,7 @@ typedef struct tagLVFINDINFOA {
|
|||
LPARAM lParam;
|
||||
POINT pt;
|
||||
UINT vkDirection;
|
||||
} LVFINDINFOA, FAR* LPFINDINFOA;
|
||||
} LVFINDINFOA, FAR* LPLVFINDINFOA;
|
||||
#define _LV_FINDINFOA tagLVFINDINFOA
|
||||
#define LV_FINDINFOA LVFINDINFOA
|
||||
typedef struct tagLVFINDINFOW {
|
||||
|
@ -2359,7 +2374,7 @@ typedef struct tagLVFINDINFOW {
|
|||
LPARAM lParam;
|
||||
POINT pt;
|
||||
UINT vkDirection;
|
||||
} LVFINDINFOW, FAR* LPFINDINFOW;
|
||||
} LVFINDINFOW, FAR* LPLVFINDINFOW;
|
||||
#define _LV_FINDINFOW tagLVFINDINFOW
|
||||
#define LV_FINDINFOW LVFINDINFOW
|
||||
typedef struct _LVHITTESTINFO {
|
||||
|
@ -2833,7 +2848,11 @@ void WINAPI GetEffectiveClientRect(HWND,LPRECT,LPINT);
|
|||
#define Header_GetItemCount(w) (int)SNDMSG((w),HDM_GETITEMCOUNT,0,0)
|
||||
#define Header_InsertItem(w,i,phdi) (int)SNDMSG((w),HDM_INSERTITEM,(WPARAM)(int)(i),(LPARAM)(const HD_ITEM*)(phdi))
|
||||
#define Header_DeleteItem(w,i) (BOOL)SNDMSG((w),HDM_DELETEITEM,(WPARAM)(int)(i),0)
|
||||
#define Header_GetItemA(w,i,phdi) (BOOL)SNDMSGA((w),HDM_GETITEMA,(WPARAM)(int)(i),(LPARAM)(HD_ITEMA*)(phdi))
|
||||
#define Header_GetItemW(w,i,phdi) (BOOL)SNDMSGW((w),HDM_GETITEMW,(WPARAM)(int)(i),(LPARAM)(HD_ITEMW*)(phdi))
|
||||
#define Header_GetItem(w,i,phdi) (BOOL)SNDMSG((w),HDM_GETITEM,(WPARAM)(int)(i),(LPARAM)(HD_ITEM*)(phdi))
|
||||
#define Header_SetItemA(w,i,phdi) (BOOL)SNDMSGA((w),HDM_SETITEMA,(WPARAM)(int)(i),(LPARAM)(const HD_ITEMA*)(phdi))
|
||||
#define Header_SetItemW(w,i,phdi) (BOOL)SNDMSGW((w),HDM_SETITEMW,(WPARAM)(int)(i),(LPARAM)(const HD_ITEMW*)(phdi))
|
||||
#define Header_SetItem(w,i,phdi) (BOOL)SNDMSG((w),HDM_SETITEM,(WPARAM)(int)(i),(LPARAM)(const HD_ITEM*)(phdi))
|
||||
#define Header_Layout(w,l) (BOOL)SNDMSG((w),HDM_LAYOUT,0,(LPARAM)(HD_LAYOUT*)(l))
|
||||
#if (_WIN32_IE >= 0x0300)
|
||||
|
@ -2930,16 +2949,24 @@ int WINAPI LBItemFromPt(HWND,POINT,BOOL);
|
|||
#define ListView_GetBkColor(w) (COLORREF)SNDMSG((w),LVM_GETBKCOLOR,0,0)
|
||||
#define ListView_GetImageList(w,i) (HIMAGELIST)SNDMSG((w),LVM_GETIMAGELIST,(i),0)
|
||||
#define ListView_GetItemCount(w) (int)SNDMSG((w),LVM_GETITEMCOUNT,0,0)
|
||||
#define ListView_GetItemA(hwnd,pitem) (BOOL)SNDMSGA((hwnd),LVM_GETITEMA,0,(LPARAM)(LVITEMA *)(pitem))
|
||||
#define ListView_GetItemW(hwnd,pitem) (BOOL)SNDMSGW((hwnd),LVM_GETITEMW,0,(LPARAM)(LVITEMW *)(pitem))
|
||||
#define ListView_GetItem(w,i) (BOOL)SNDMSG((w),LVM_GETITEM,0,(LPARAM)(i))
|
||||
#define ListView_SetBkColor(w,c) (BOOL)SNDMSG((w),LVM_SETBKCOLOR,0,(LPARAM)c)
|
||||
#define ListView_SetImageList(w,h,i) (HIMAGELIST)(UINT)SNDMSG((w),LVM_SETIMAGELIST,(i),(LPARAM)(h))
|
||||
#define ListView_SetItemA(hwnd,pitem) (BOOL)SNDMSGA((hwnd),LVM_SETITEMA,0,(LPARAM)(const LVITEMA *)(pitem))
|
||||
#define ListView_SetItemW(hwnd,pitem) (BOOL)SNDMSGW((hwnd),LVM_SETITEMW,0,(LPARAM)(const LVITEMW *)(pitem))
|
||||
#define ListView_SetItem(w,i) (BOOL)SNDMSG((w),LVM_SETITEM,0,(LPARAM)(const LV_ITEM*)(i))
|
||||
#define ListView_InsertItemA(hwnd,pitem) (int)SNDMSGA((hwnd),LVM_INSERTITEMA,0,(LPARAM)(const LVITEMA *)(pitem))
|
||||
#define ListView_InsertItemW(hwnd,pitem) (int)SNDMSGW((hwnd),LVM_INSERTITEMW,0,(LPARAM)(const LVITEMW *)(pitem))
|
||||
#define ListView_InsertItem(w,i) (int)SNDMSG((w),LVM_INSERTITEM,0,(LPARAM)(const LV_ITEM*)(i))
|
||||
#define ListView_DeleteItem(w,i) (BOOL)SNDMSG((w),LVM_DELETEITEM,i,0)
|
||||
#define ListView_DeleteAllItems(w) (BOOL)SNDMSG((w),LVM_DELETEALLITEMS,0,0)
|
||||
#define ListView_GetCallbackMask(w) (BOOL)SNDMSG((w),LVM_GETCALLBACKMASK,0,0)
|
||||
#define ListView_SetCallbackMask(w,m) (BOOL)SNDMSG((w),LVM_SETCALLBACKMASK,m,0)
|
||||
#define ListView_GetNextItem(w,i,f) (int)SNDMSG((w),LVM_GETNEXTITEM,i,MAKELPARAM((f),0))
|
||||
#define ListView_FindItemA(w,i,p) (int)SNDMSGA((w), LVM_FINDITEMA,i,(LPARAM)(const LV_FINDINFOA*)(p))
|
||||
#define ListView_FindItemW(w,i,p) (int)SNDMSGW((w), LVM_FINDITEMW,i,(LPARAM)(const LV_FINDINFOW*)(p))
|
||||
#define ListView_FindItem(w,i,p) (int)SNDMSG((w), LVM_FINDITEM,i,(LPARAM)(const LV_FINDINFO*)(p))
|
||||
#define ListView_GetItemRect(w,i,p,c) (BOOL)SNDMSG((w),LVM_GETITEMRECT,i,((p)?(((LPRECT)(p))->left=(c),(LPARAM)(LPRECT)(p)):0))
|
||||
#define ListView_SetItemPosition(w,i,x,y) (BOOL)SNDMSG((w),LVM_SETITEMPOSITION,i,MAKELPARAM(x,y))
|
||||
|
@ -2951,10 +2978,14 @@ int WINAPI LBItemFromPt(HWND,POINT,BOOL);
|
|||
#define ListView_Scroll(w,dx,dy) (BOOL)SNDMSG((w),LVM_SCROLL,dx,dy)
|
||||
#define ListView_RedrawItems(w,f,l) (BOOL)SNDMSG((w),LVM_REDRAWITEMS,f,l)
|
||||
#define ListView_Arrange(w,c) (BOOL)SNDMSG((w),LVM_ARRANGE,c,0)
|
||||
#define ListView_EditLabelA(hwndLV, i) (HWND)SNDMSGA((hwndLV),LVM_EDITLABELA,(WPARAM)(int)(i), 0L)
|
||||
#define ListView_EditLabelW(hwndLV, i) (HWND)SNDMSGW((hwndLV),LVM_EDITLABELW,(WPARAM)(int)(i), 0L)
|
||||
#define ListView_EditLabel(w,i) (HWND)SNDMSG((w),LVM_EDITLABEL,i,0)
|
||||
#define ListView_GetEditControl(w) (HWND)SNDMSG((w),LVM_GETEDITCONTROL,0,0)
|
||||
#define ListView_GetColumn(w,i,p) (BOOL)SNDMSG((w),LVM_GETCOLUMN,i,(LPARAM)(LV_COLUMN*)(p))
|
||||
#define ListView_SetColumn(w,i,p) (BOOL)SNDMSG((w),LVM_SETCOLUMN,i,(LPARAM)(const LV_COLUMN*)(p))
|
||||
#define ListView_InsertColumnA(hwnd,iCol,pcol) (int)SNDMSGA((hwnd),LVM_INSERTCOLUMNA,(WPARAM)(INT)(iCol),(LPARAM)(const LVCOLUMNA *)(pcol))
|
||||
#define ListView_InsertColumnW(hwnd,iCol,pcol) (int)SNDMSGW((hwnd),LVM_INSERTCOLUMNW,(WPARAM)(INT)(iCol),(LPARAM)(const LVCOLUMNW *)(pcol))
|
||||
#define ListView_InsertColumn(w,i,p) (int)SNDMSG((w),LVM_INSERTCOLUMN,i,(LPARAM)(const LV_COLUMN*)(p))
|
||||
#define ListView_DeleteColumn(w,i) (BOOL)SNDMSG((w),LVM_DELETECOLUMN,i,0)
|
||||
#define ListView_GetColumnWidth(w,i) (int)SNDMSG((w),LVM_GETCOLUMNWIDTH,i,0)
|
||||
|
@ -3049,6 +3080,8 @@ BOOL WINAPI ShowHideMenuCtl(HWND,UINT,PINT);
|
|||
#define TabCtrl_SetImageList(w,h) (HIMAGELIST)SNDMSG((w),TCM_SETIMAGELIST,0,(LPARAM)(UINT)(h))
|
||||
#define TabCtrl_GetItemCount(w) (int)SNDMSG((w),TCM_GETITEMCOUNT,0,0)
|
||||
BOOL WINAPI _TrackMouseEvent(LPTRACKMOUSEEVENT);
|
||||
#define TreeView_InsertItemA(w,i) (HTREEITEM)SNDMSGA((w),TVM_INSERTITEMA,0,(LPARAM)(LPTV_INSERTSTRUCTA)(i))
|
||||
#define TreeView_InsertItemW(w,i) (HTREEITEM)SNDMSGW((w),TVM_INSERTITEMW,0,(LPARAM)(LPTV_INSERTSTRUCTW)(i))
|
||||
#define TreeView_InsertItem(w,i) (HTREEITEM)SNDMSG((w),TVM_INSERTITEM,0,(LPARAM)(LPTV_INSERTSTRUCT)(i))
|
||||
#define TreeView_DeleteItem(w,i) (BOOL)SNDMSG((w),TVM_DELETEITEM,0,(LPARAM)(HTREEITEM)(i))
|
||||
#define TreeView_DeleteAllItems(w) (BOOL)SNDMSG((w),TVM_DELETEITEM,0,(LPARAM)TVI_ROOT)
|
||||
|
@ -3478,4 +3511,24 @@ typedef REBARBANDINFOA REBARBANDINFO,*LPREBARBANDINFO;
|
|||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#define TBSTYLE_EX_UNDOC1 0x00000004 /* similar to TBSTYLE_WRAPABLE */
|
||||
|
||||
/* undocumented messages in Toolbar */
|
||||
#define TB_UNKWN45D (WM_USER+93)
|
||||
#define TB_UNKWN45E (WM_USER+94)
|
||||
#define TB_UNKWN460 (WM_USER+96)
|
||||
#define TB_UNKWN463 (WM_USER+99)
|
||||
#define TB_UNKWN464 (WM_USER+100)
|
||||
|
||||
#define RBBS_USECHEVRON 0x00000200
|
||||
#define RBHT_CHEVRON 0x0008
|
||||
#define RBN_CHEVRONPUSHED (RBN_FIRST-10)
|
||||
#define RB_PUSHCHEVRON (WM_USER+43)
|
||||
|
||||
#define HDM_SETBITMAPMARGIN (HDM_FIRST+20)
|
||||
#define HDM_GETBITMAPMARGIN (HDM_FIRST+21)
|
||||
|
||||
#define FLATSB_CLASSA "flatsb_class32"
|
||||
|
||||
#endif
|
||||
|
|
7
reactos/include/wine/commdlg.h
Normal file
|
@ -0,0 +1,7 @@
|
|||
/* $Id: commdlg.h,v 1.1 2004/01/02 19:49:44 gvg Exp $ */
|
||||
|
||||
#if (WINVER >= 0x0500) && !defined (__OBJC__)
|
||||
#include <objbase.h>
|
||||
#endif
|
||||
|
||||
#include_next <commdlg.h>
|
|
@ -505,7 +505,7 @@
|
|||
#define HAVE_SPAWNVP 1
|
||||
|
||||
/* Define to 1 if the system has the type `ssize_t'. */
|
||||
/* #undef HAVE_SSIZE_T */
|
||||
#define HAVE_SSIZE_T
|
||||
|
||||
/* Define to 1 if you have the `statfs' function. */
|
||||
/* #undef HAVE_STATFS */
|
||||
|
|
8
reactos/include/wine/cpl.h
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef __WINE_CPL_H
|
||||
#define __WINE_CPL_H
|
||||
|
||||
#include_next <cpl.h>
|
||||
|
||||
#define CPL_STARTWPARMSA 9
|
||||
|
||||
#endif /* __WINE_CPL_H */
|
|
@ -5,7 +5,7 @@
|
|||
#include <stdarg.h>
|
||||
#include <wchar.h>
|
||||
|
||||
ULONG DbgPrint(PCH Format,...);
|
||||
unsigned long DbgPrint(char *Format,...);
|
||||
|
||||
#define DPRINT1 DbgPrint("(%s:%d:%s) ",__FILE__,__LINE__,__FUNCTION__), DbgPrint
|
||||
|
||||
|
@ -30,16 +30,16 @@ struct _GUID;
|
|||
quotes. The string will be valid for some time, but not indefinitely
|
||||
as strings are re-used. */
|
||||
extern const char *wine_dbgstr_an( const char * s, int n );
|
||||
extern const char *wine_dbgstr_wn( const WCHAR *s, int n );
|
||||
extern const char *wine_dbgstr_wn( const wchar_t *s, int n );
|
||||
extern const char *wine_dbgstr_guid( const struct _GUID *id );
|
||||
|
||||
inline static const char *debugstr_an( const char * s, int n ) { return wine_dbgstr_an( s, n ); }
|
||||
inline static const char *debugstr_wn( const WCHAR *s, int n ) { return wine_dbgstr_wn( s, n ); }
|
||||
inline static const char *debugstr_wn( const wchar_t *s, int n ) { return wine_dbgstr_wn( s, n ); }
|
||||
inline static const char *debugstr_guid( const struct _GUID *id ) { return wine_dbgstr_guid(id); }
|
||||
inline static const char *debugstr_a( const char *s ) { return wine_dbgstr_an( s, 80 ); }
|
||||
inline static const char *debugstr_w( const WCHAR *s ) { return wine_dbgstr_wn( s, 80 ); }
|
||||
inline static const char *debugstr_w( const wchar_t *s ) { return wine_dbgstr_wn( s, 80 ); }
|
||||
inline static const char *debugres_a( const char *s ) { return wine_dbgstr_an( s, 80 ); }
|
||||
inline static const char *debugres_w( const WCHAR *s ) { return wine_dbgstr_wn( s, 80 ); }
|
||||
inline static const char *debugres_w( const wchar_t *s ) { return wine_dbgstr_wn( s, 80 ); }
|
||||
|
||||
#define TRACE DPRINT
|
||||
#define TRACE_(ch) DPRINT
|
||||
|
|
91
reactos/include/wine/guiddef.h
Normal file
|
@ -0,0 +1,91 @@
|
|||
/*
|
||||
* Copyright (C) 2000 Alexandre Julliard
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef GUID_DEFINED
|
||||
#define GUID_DEFINED
|
||||
typedef struct _GUID
|
||||
{
|
||||
unsigned long Data1;
|
||||
unsigned short Data2;
|
||||
unsigned short Data3;
|
||||
unsigned char Data4[ 8 ];
|
||||
} GUID;
|
||||
#endif
|
||||
|
||||
#undef DEFINE_GUID
|
||||
|
||||
#ifdef INITGUID
|
||||
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
||||
const GUID name = \
|
||||
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
||||
#else
|
||||
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
||||
extern const GUID name;
|
||||
#endif
|
||||
|
||||
#define DEFINE_OLEGUID(name, l, w1, w2) \
|
||||
DEFINE_GUID(name, l, w1, w2, 0xC0,0,0,0,0,0,0,0x46)
|
||||
|
||||
#ifndef _GUIDDEF_H_
|
||||
#define _GUIDDEF_H_
|
||||
|
||||
typedef GUID *LPGUID;
|
||||
typedef GUID CLSID,*LPCLSID;
|
||||
typedef GUID IID,*LPIID;
|
||||
typedef GUID FMTID,*LPFMTID;
|
||||
|
||||
#if 0
|
||||
#if defined(__cplusplus) && !defined(CINTERFACE)
|
||||
#define REFGUID const GUID &
|
||||
#define REFCLSID const CLSID &
|
||||
#define REFIID const IID &
|
||||
#define REFFMTID const FMTID &
|
||||
#else /* !defined(__cplusplus) && !defined(CINTERFACE) */
|
||||
#define REFGUID const GUID* const
|
||||
#define REFCLSID const CLSID* const
|
||||
#define REFIID const IID* const
|
||||
#define REFFMTID const FMTID* const
|
||||
#endif /* !defined(__cplusplus) && !defined(CINTERFACE) */
|
||||
#endif
|
||||
|
||||
#if defined(__cplusplus) && !defined(CINTERFACE)
|
||||
#define IsEqualGUID(rguid1, rguid2) (!memcmp(&(rguid1), &(rguid2), sizeof(GUID)))
|
||||
#else /* defined(__cplusplus) && !defined(CINTERFACE) */
|
||||
#define IsEqualGUID(rguid1, rguid2) (!memcmp(rguid1, rguid2, sizeof(GUID)))
|
||||
#endif /* defined(__cplusplus) && !defined(CINTERFACE) */
|
||||
#define IsEqualIID(riid1, riid2) IsEqualGUID(riid1, riid2)
|
||||
#define IsEqualCLSID(rclsid1, rclsid2) IsEqualGUID(rclsid1, rclsid2)
|
||||
|
||||
#if defined(__cplusplus) && !defined(CINTERFACE)
|
||||
#include <string.h>
|
||||
inline bool operator==(const GUID& guidOne, const GUID& guidOther)
|
||||
{
|
||||
return !memcmp(&guidOne,&guidOther,sizeof(GUID));
|
||||
}
|
||||
inline bool operator!=(const GUID& guidOne, const GUID& guidOther)
|
||||
{
|
||||
return !(guidOne == guidOther);
|
||||
}
|
||||
#endif
|
||||
|
||||
extern const IID GUID_NULL;
|
||||
#define IID_NULL GUID_NULL
|
||||
#define CLSID_NULL GUID_NULL
|
||||
#define FMTID_NULL GUID_NULL
|
||||
|
||||
#endif /* _GUIDDEF_H_ */
|
46
reactos/include/wine/heap.h
Normal file
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* Win32 heap definitions
|
||||
*
|
||||
* Copyright 1996 Alexandre Julliard
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_HEAP_H
|
||||
#define __WINE_HEAP_H
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winnls.h>
|
||||
|
||||
/* strdup macros */
|
||||
/* DO NOT USE IT!! it will go away soon */
|
||||
|
||||
inline static LPSTR HEAP_strdupWtoA( HANDLE heap, DWORD flags, LPCWSTR str )
|
||||
{
|
||||
LPSTR ret;
|
||||
INT len;
|
||||
|
||||
if (!str) return NULL;
|
||||
len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL );
|
||||
ret = HeapAlloc( heap, flags, len );
|
||||
if(ret) WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
|
||||
return ret;
|
||||
}
|
||||
|
||||
#endif /* __WINE_HEAP_H */
|
26
reactos/include/wine/initguid.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Defines a minimum set of macros create GUID's to keep the size
|
||||
* small
|
||||
*
|
||||
* This file should be included into "only GUID definition *.h" like
|
||||
* shlguid.h
|
||||
*
|
||||
* Copyright (C) 1999 Juergen Schmied
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#define INITGUID
|
||||
#include <guiddef.h>
|
46
reactos/include/wine/oaidl.h
Normal file
|
@ -0,0 +1,46 @@
|
|||
#include <wtypes.h>
|
||||
#include <unknwn.h>
|
||||
#include <objidl.h>
|
||||
#include <rpc.h>
|
||||
#include <rpcndr.h>
|
||||
|
||||
#include_next <oaidl.h>
|
||||
|
||||
#ifndef __WINE_OAIDL_H
|
||||
#define __WINE_OAIDL_H
|
||||
|
||||
|
||||
DEFINE_GUID(IID_IDispatch, 0x00020400, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IEnumVARIANT, 0x00020404, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ITypeComp, 0x00020403, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ITypeInfo, 0x00020401, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ITypeInfo2, 0x00020412, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ITypeLib, 0x00020402, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ITypeLib2, 0x00020411, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ITypeChangeEvents, 0x00020410, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IErrorInfo, 0x1cf2b120, 0x547d, 0x101b, 0x8e,0x65, 0x08,0x00,0x2b,0x2b,0xd1,0x19);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IErrorInfo_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IErrorInfo_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IErrorInfo_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IErrorInfo methods ***/
|
||||
#define IErrorInfo_GetGUID(p,a) (p)->lpVtbl->GetGUID(p,a)
|
||||
#define IErrorInfo_GetSource(p,a) (p)->lpVtbl->GetSource(p,a)
|
||||
#define IErrorInfo_GetDescription(p,a) (p)->lpVtbl->GetDescription(p,a)
|
||||
#define IErrorInfo_GetHelpFile(p,a) (p)->lpVtbl->GetHelpFile(p,a)
|
||||
#define IErrorInfo_GetHelpContext(p,a) (p)->lpVtbl->GetHelpContext(p,a)
|
||||
|
||||
DEFINE_GUID(IID_ICreateErrorInfo, 0x22f03340, 0x547d, 0x101b, 0x8e,0x65, 0x08,0x00,0x2b,0x2b,0xd1,0x19);
|
||||
DEFINE_GUID(IID_ISupportErrorInfo, 0xdf0b3d60, 0x548f, 0x101b, 0x8e,0x65, 0x08,0x00,0x2b,0x2b,0xd1,0x19);
|
||||
DEFINE_GUID(IID_ITypeFactory, 0x0000002e, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ITypeMarshal, 0x0000002d, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IRecordInfo, 0x0000002f, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ICreateTypeInfo, 0x00020405, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ICreateTypeInfo2, 0x0002040e, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ICreateTypeLib, 0x00020406, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_ICreateTypeLib2, 0x0002040f, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IErrorLog, 0x3127ca40, 0x446e, 0x11ce, 0x81,0x35, 0x00,0xaa,0x00,0x4b,0xb8,0x51);
|
||||
DEFINE_GUID(IID_IPropertyBag, 0x55272a00, 0x42cb, 0x11ce, 0x81,0x35, 0x00,0xaa,0x00,0x4b,0xb8,0x51);
|
||||
|
||||
#endif /* __WINE_OAIDL_H */
|
51
reactos/include/wine/objbase.h
Normal file
|
@ -0,0 +1,51 @@
|
|||
/*
|
||||
* Copyright (C) 1998-1999 François Gouget
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#define WINOLEAPI STDAPI
|
||||
#define WINOLEAPI_(type) STDAPI_(type)
|
||||
|
||||
#include_next <objbase.h>
|
||||
|
||||
#ifndef _OBJBASE_H_
|
||||
#define _OBJBASE_H_
|
||||
|
||||
#define interface struct
|
||||
|
||||
#undef CONST_VTBL
|
||||
#define CONST_VTBL
|
||||
#define WINE_DECLARE_INTERFACE(iface) \
|
||||
/*typedef*/ interface iface { struct iface##Vtbl *lpVtbl; } /*iface*/; \
|
||||
typedef struct iface##Vtbl iface##Vtbl; \
|
||||
struct iface##Vtbl
|
||||
#define WINE_DECLARE_INTERFACE_(iface,ibase) WINE_DECLARE_INTERFACE(iface)
|
||||
|
||||
#define ICOM_DEFINE(iface,ibase) WINE_DECLARE_INTERFACE_(iface,ibase) { iface##_METHODS };
|
||||
#define ICOM_VTABLE(iface) iface##Vtbl
|
||||
#define ICOM_VFIELD(iface) ICOM_VTABLE(iface)* lpVtbl
|
||||
#define ICOM_THIS(impl,iface) impl* const This=(impl*)(iface)
|
||||
#define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
|
||||
|
||||
/*****************************************************************************
|
||||
* Storage API
|
||||
*/
|
||||
#define STGM_NOSNAPSHOT 0x00200000
|
||||
|
||||
HRESULT WINAPI CoGetPSClsid(REFIID riid,CLSID *pclsid);
|
||||
HRESULT WINAPI CLSIDFromProgID16(LPCOLESTR16 progid, LPCLSID riid);
|
||||
|
||||
#endif /* _OBJBASE_H_ */
|
1919
reactos/include/wine/objidl.h
Normal file
111
reactos/include/wine/ocidl.h
Normal file
|
@ -0,0 +1,111 @@
|
|||
#ifndef __WINE_OCIDL_H
|
||||
#define __WINE_OCIDL_H
|
||||
|
||||
#include_next <ocidl.h>
|
||||
|
||||
DEFINE_GUID(IID_IFont, 0xbef6e002, 0xa874, 0x101a, 0x8b,0xba, 0x00,0xaa,0x00,0x30,0x0c,0xab);
|
||||
DEFINE_GUID(IID_IFontDisp, 0xbef6e003, 0xa874, 0x101a, 0x8b,0xba, 0x00,0xaa,0x00,0x30,0x0c,0xab);
|
||||
DEFINE_GUID(IID_IPicture, 0x7bf80980, 0xbf32, 0x101a, 0x8b,0xbb, 0x00,0xaa,0x00,0x30,0x0c,0xab);
|
||||
DEFINE_GUID(IID_IPictureDisp, 0x7bf80981, 0xbf32, 0x101a, 0x8b,0xbb, 0x00,0xaa,0x00,0x30,0x0c,0xab);
|
||||
DEFINE_GUID(IID_IOleControl, 0xb196b288, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
DEFINE_GUID(IID_IOleControlSite, 0xb196b289, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleControlSite_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleControlSite_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleControlSite_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IOleControlSite methods ***/
|
||||
#define IOleControlSite_OnControlInfoChanged(p) (p)->lpVtbl->OnControlInfoChanged(p)
|
||||
#define IOleControlSite_LockInPlaceActive(p,a) (p)->lpVtbl->LockInPlaceActive(p,a)
|
||||
#define IOleControlSite_GetExtendedControl(p,a) (p)->lpVtbl->GetExtendedControl(p,a)
|
||||
#define IOleControlSite_TransformCoords(p,a,b,c) (p)->lpVtbl->TransformCoords(p,a,b,c)
|
||||
#define IOleControlSite_TranslateAccelerator(p,a,b) (p)->lpVtbl->TranslateAccelerator(p,a,b)
|
||||
#define IOleControlSite_OnFocus(p,a) (p)->lpVtbl->OnFocus(p,a)
|
||||
#define IOleControlSite_ShowPropertyFrame(p) (p)->lpVtbl->ShowPropertyFrame(p)
|
||||
|
||||
DEFINE_GUID(IID_IOleInPlaceSiteEx, 0x9c2cad80, 0x3424, 0x11cf, 0xb6,0x70, 0x00,0xaa,0x00,0x4c,0xd6,0xd8);
|
||||
DEFINE_GUID(IID_IOleInPlaceSiteWindowless, 0x922eada0, 0x3424, 0x11cf, 0xb6,0x70, 0x00,0xaa,0x00,0x4c,0xd6,0xd8);
|
||||
DEFINE_GUID(IID_IOleInPlaceObjectWindowless, 0x1c2056cc, 0x5ef4, 0x101b, 0x8b,0xc8, 0x00,0xaa,0x00,0x3e,0x3b,0x29);
|
||||
DEFINE_GUID(IID_IClassFactory2, 0xb196b28f, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
DEFINE_GUID(IID_IViewObjectEx, 0x3af24292, 0x0c96, 0x11ce, 0xa0,0xcf, 0x00,0xaa,0x00,0x60,0x0a,0xb8);
|
||||
DEFINE_GUID(IID_IProvideClassInfo, 0xb196b283, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
DEFINE_GUID(IID_IProvideClassInfo2, 0xa6bc3ac0, 0xdbaa, 0x11ce, 0x9d,0xe3, 0x00,0xaa,0x00,0x4b,0xb8,0x51);
|
||||
DEFINE_GUID(IID_IConnectionPoint, 0xb196b286, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IConnectionPoint_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IConnectionPoint_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IConnectionPoint_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IConnectionPoint methods ***/
|
||||
#define IConnectionPoint_GetConnectionInterface(p,a) (p)->lpVtbl->GetConnectionInterface(p,a)
|
||||
#define IConnectionPoint_GetConnectionPointContainer(p,a) (p)->lpVtbl->GetConnectionPointContainer(p,a)
|
||||
#define IConnectionPoint_Advise(p,a,b) (p)->lpVtbl->Advise(p,a,b)
|
||||
#define IConnectionPoint_Unadvise(p,a) (p)->lpVtbl->Unadvise(p,a)
|
||||
#define IConnectionPoint_EnumConnections(p,a) (p)->lpVtbl->EnumConnections(p,a)
|
||||
|
||||
DEFINE_GUID(IID_IConnectionPointContainer, 0xb196b284, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IConnectionPointContainer_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IConnectionPointContainer_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IConnectionPointContainer_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IConnectionPointContainer methods ***/
|
||||
#define IConnectionPointContainer_EnumConnectionPoints(p,a) (p)->lpVtbl->EnumConnectionPoints(p,a)
|
||||
#define IConnectionPointContainer_FindConnectionPoint(p,a,b) (p)->lpVtbl->FindConnectionPoint(p,a,b)
|
||||
|
||||
DEFINE_GUID(IID_IEnumConnections, 0xb196b287, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IEnumConnections_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IEnumConnections_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IEnumConnections_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IEnumConnections methods ***/
|
||||
#define IEnumConnections_Next(p,a,b,c) (p)->lpVtbl->Next(p,a,b,c)
|
||||
#define IEnumConnections_Skip(p,a) (p)->lpVtbl->Skip(p,a)
|
||||
#define IEnumConnections_Reset(p) (p)->lpVtbl->Reset(p)
|
||||
#define IEnumConnections_Clone(p,a) (p)->lpVtbl->Clone(p,a)
|
||||
|
||||
DEFINE_GUID(IID_IEnumConnectionPoints, 0xb196b285, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
DEFINE_GUID(IID_IPropertyPage, 0xb196b28d, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
DEFINE_GUID(IID_IPropertyPage2, 0x01e44665, 0x24ac, 0x101b, 0x84,0xed, 0x08,0x00,0x2b,0x2e,0xc7,0x13);
|
||||
DEFINE_GUID(IID_IPropertyPageSite, 0xb196b28c, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
DEFINE_GUID(IID_IPropertyNotifySink, 0x9bfbbc02, 0xeff1, 0x101a, 0x84,0xed, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IPropertyNotifySink_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IPropertyNotifySink_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IPropertyNotifySink_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IPropertyNotifySink methods ***/
|
||||
#define IPropertyNotifySink_OnChanged(p,a) (p)->lpVtbl->OnChanged(p,a)
|
||||
#define IPropertyNotifySink_OnRequestEdit(p,a) (p)->lpVtbl->OnRequestEdit(p,a)
|
||||
|
||||
DEFINE_GUID(IID_ISimpleFrameSite, 0x742b0e01, 0x14e6, 0x101b, 0x91,0x4e, 0x00,0xaa,0x00,0x30,0x0c,0xab);
|
||||
DEFINE_GUID(IID_IPersistStreamInit, 0x7fd52380, 0x4e07, 0x101b, 0xae,0x2d, 0x08,0x00,0x2b,0x2e,0xc7,0x13);
|
||||
DEFINE_GUID(IID_IPersistMemory, 0xbd1ae5e0, 0xa6ae, 0x11ce, 0xbd,0x37, 0x50,0x42,0x00,0xc1,0x00,0x00);
|
||||
DEFINE_GUID(IID_IPersistPropertyBag, 0x37d84f60, 0x42cb, 0x11ce, 0x81,0x35, 0x00,0xaa,0x00,0x4b,0xb8,0x51);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IPersistPropertyBag_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IPersistPropertyBag_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IPersistPropertyBag_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IPersist methods ***/
|
||||
#define IPersistPropertyBag_GetClassID(p,a) (p)->lpVtbl->GetClassID(p,a)
|
||||
/*** IPersistPropertyBag methods ***/
|
||||
#define IPersistPropertyBag_InitNew(p) (p)->lpVtbl->InitNew(p)
|
||||
#define IPersistPropertyBag_Load(p,a,b) (p)->lpVtbl->Load(p,a,b)
|
||||
#define IPersistPropertyBag_Save(p,a,b,c) (p)->lpVtbl->Save(p,a,b,c)
|
||||
|
||||
DEFINE_GUID(IID_IPropertyBag2, 0x22f55882, 0x280b, 0x11d0, 0xa8,0xa9, 0x00,0xa0,0xc9,0x0c,0x20,0x04);
|
||||
DEFINE_GUID(IID_IPersistPropertyBag2, 0x22f55881, 0x280b, 0x11d0, 0xa8,0xa9, 0x00,0xa0,0xc9,0x0c,0x20,0x04);
|
||||
DEFINE_GUID(IID_ISpecifyPropertyPages, 0xb196b28b, 0xbab4, 0x101a, 0xb6,0x9c, 0x00,0xaa,0x00,0x34,0x1d,0x07);
|
||||
DEFINE_GUID(IID_IPerPropertyBrowsing, 0x376bd3aa, 0x3845, 0x101b, 0x84,0xed, 0x08,0x00,0x2b,0x2e,0xc7,0x13);
|
||||
DEFINE_GUID(IID_IAdviseSinkEx, 0x3af24290, 0x0c96, 0x11ce, 0xa0,0xcf, 0x00,0xaa,0x00,0x60,0x0a,0xb8);
|
||||
DEFINE_GUID(IID_IPointerInactive, 0x55980ba0, 0x35aa, 0x11cf, 0xb6,0x71, 0x00,0xaa,0x00,0x4c,0xd6,0xd8);
|
||||
DEFINE_GUID(IID_IObjectWithSite, 0xfc4801a3, 0x2ba9, 0x11cf, 0xa2,0x29, 0x00,0xaa,0x00,0x3d,0x73,0x52);
|
||||
DEFINE_GUID(IID_IOleUndoUnit, 0x894ad3b0, 0xef97, 0x11ce, 0x9b,0xc9, 0x00,0xaa,0x00,0x60,0x8e,0x01);
|
||||
DEFINE_GUID(IID_IOleParentUndoUnit, 0xa1faf330, 0xef97, 0x11ce, 0x9b,0xc9, 0x00,0xaa,0x00,0x60,0x8e,0x01);
|
||||
DEFINE_GUID(IID_IEnumOleUndoUnits, 0xb3e7c340, 0xef97, 0x11ce, 0x9b,0xc9, 0x00,0xaa,0x00,0x60,0x8e,0x01);
|
||||
DEFINE_GUID(IID_IOleUndoManager, 0xd001f200, 0xef97, 0x11ce, 0x9b,0xc9, 0x00,0xaa,0x00,0x60,0x8e,0x01);
|
||||
DEFINE_GUID(IID_IQuickActivate, 0xcf51ed10, 0x62fe, 0x11cf, 0xbf,0x86, 0x00,0xa0,0xc9,0x03,0x48,0x36);
|
||||
|
||||
#endif /* __WINE_OAIDL_H */
|
36
reactos/include/wine/ole2.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* Declarations for OLE2
|
||||
*
|
||||
* Copyright (C) the Wine project
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include_next <ole2.h>
|
||||
|
||||
#ifndef __WINE_OLE2_H
|
||||
#define __WINE_OLE2_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* defined(__cplusplus) */
|
||||
|
||||
BOOL WINAPI IsValidInterface(LPUNKNOWN punk);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif /* defined(__cplusplus) */
|
||||
|
||||
#endif /* __WINE_OLE2_H */
|
449
reactos/include/wine/oleidl.h
Normal file
|
@ -0,0 +1,449 @@
|
|||
#ifndef __WINE_OLEIDL_H
|
||||
#define __WINE_OLEIDL_H
|
||||
|
||||
#include <unknwn.h>
|
||||
#include_next <oleidl.h>
|
||||
|
||||
DEFINE_GUID(IID_IOleWindow, 0x00000114, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleWindow_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleWindow_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleWindow_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IOleWindow methods ***/
|
||||
#define IOleWindow_GetWindow(p,a) (p)->lpVtbl->GetWindow(p,a)
|
||||
#define IOleWindow_ContextSensitiveHelp(p,a) (p)->lpVtbl->ContextSensitiveHelp(p,a)
|
||||
|
||||
DEFINE_GUID(IID_IOleInPlaceObject, 0x00000113, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IOleInPlaceActiveObject, 0x00000117, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IOleInPlaceUIWindow, 0x00000115, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IOleInPlaceFrame, 0x00000116, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleInPlaceFrame_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleInPlaceFrame_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleInPlaceFrame_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IOleWindow methods ***/
|
||||
#define IOleInPlaceFrame_GetWindow(p,a) (p)->lpVtbl->GetWindow(p,a)
|
||||
#define IOleInPlaceFrame_ContextSensitiveHelp(p,a) (p)->lpVtbl->ContextSensitiveHelp(p,a)
|
||||
/*** IOleInPlaceUIWindow methods ***/
|
||||
#define IOleInPlaceFrame_GetBorder(p,a) (p)->lpVtbl->GetBorder(p,a)
|
||||
#define IOleInPlaceFrame_RequestBorderSpace(p,a) (p)->lpVtbl->RequestBorderSpace(p,a)
|
||||
#define IOleInPlaceFrame_SetBorderSpace(p,a) (p)->lpVtbl->SetBorderSpace(p,a)
|
||||
#define IOleInPlaceFrame_SetActiveObject(p,a,b) (p)->lpVtbl->SetActiveObject(p,a,b)
|
||||
/*** IOleInPlaceFrame methods ***/
|
||||
#define IOleInPlaceFrame_InsertMenus(p,a,b) (p)->lpVtbl->InsertMenus(p,a,b)
|
||||
#define IOleInPlaceFrame_SetMenu(p,a,b,c) (p)->lpVtbl->SetMenu(p,a,b,c)
|
||||
#define IOleInPlaceFrame_RemoveMenus(p,a) (p)->lpVtbl->RemoveMenus(p,a)
|
||||
#define IOleInPlaceFrame_SetStatusText(p,a) (p)->lpVtbl->SetStatusText(p,a)
|
||||
#define IOleInPlaceFrame_EnableModeless(p,a) (p)->lpVtbl->EnableModeless(p,a)
|
||||
#define IOleInPlaceFrame_TranslateAccelerator(p,a,b) (p)->lpVtbl->TranslateAccelerator(p,a,b)
|
||||
|
||||
DEFINE_GUID(IID_IOleInPlaceSite, 0x00000119, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IParseDisplayName, 0x0000011a, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IParseDisplayName_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IParseDisplayName_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IParseDisplayName_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IParseDisplayName methods ***/
|
||||
#define IParseDisplayName_ParseDisplayName(p,a,b,c,d) (p)->lpVtbl->ParseDisplayName(p,a,b,c,d)
|
||||
|
||||
DEFINE_GUID(IID_IOleContainer, 0x0000011b, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IOleItemContainer, 0x0000011c, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleItemContainer_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleItemContainer_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleItemContainer_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IParseDisplayName methods ***/
|
||||
#define IOleItemContainer_ParseDisplayName(p,a,b,c,d) (p)->lpVtbl->ParseDisplayName(p,a,b,c,d)
|
||||
/*** IOleContainer methods ***/
|
||||
#define IOleItemContainer_EnumObjects(p,a,b) (p)->lpVtbl->EnumObjects(p,a,b)
|
||||
#define IOleItemContainer_LockContainer(p,a) (p)->lpVtbl->LockContainer(p,a)
|
||||
/*** IOleItemContainer methods ***/
|
||||
#define IOleItemContainer_GetObject(p,a,b,c,d,e) (p)->lpVtbl->GetObject(p,a,b,c,d,e)
|
||||
#define IOleItemContainer_GetObjectStorage(p,a,b,c,d) (p)->lpVtbl->GetObjectStorage(p,a,b,c,d)
|
||||
#define IOleItemContainer_IsRunning(p,a) (p)->lpVtbl->IsRunning(p,a)
|
||||
|
||||
DEFINE_GUID(IID_IOleLink, 0x0000011d, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IOleClientSite, 0x00000118, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleClientSite_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleClientSite_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleClientSite_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IOleClientSite methods ***/
|
||||
#define IOleClientSite_SaveObject(p) (p)->lpVtbl->SaveObject(p)
|
||||
#define IOleClientSite_GetMoniker(p,a,b,c) (p)->lpVtbl->GetMoniker(p,a,b,c)
|
||||
#define IOleClientSite_GetContainer(p,a) (p)->lpVtbl->GetContainer(p,a)
|
||||
#define IOleClientSite_ShowObject(p) (p)->lpVtbl->ShowObject(p)
|
||||
#define IOleClientSite_OnShowWindow(p,a) (p)->lpVtbl->OnShowWindow(p,a)
|
||||
#define IOleClientSite_RequestNewObjectLayout(p) (p)->lpVtbl->RequestNewObjectLayout(p)
|
||||
|
||||
DEFINE_GUID(IID_IOleCache, 0x0000011e, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IOleCache2, 0x00000128, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IOleCacheControl, 0x00000129, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IEnumOLEVERB, 0x00000104, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IOleObject, 0x00000112, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleObject_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleObject_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleObject_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IOleObject methods ***/
|
||||
#define IOleObject_SetClientSite(p,a) (p)->lpVtbl->SetClientSite(p,a)
|
||||
#define IOleObject_GetClientSite(p,a) (p)->lpVtbl->GetClientSite(p,a)
|
||||
#define IOleObject_SetHostNames(p,a,b) (p)->lpVtbl->SetHostNames(p,a,b)
|
||||
#define IOleObject_Close(p,a) (p)->lpVtbl->Close(p,a)
|
||||
#define IOleObject_SetMoniker(p,a,b) (p)->lpVtbl->SetMoniker(p,a,b)
|
||||
#define IOleObject_GetMoniker(p,a,b,c) (p)->lpVtbl->GetMoniker(p,a,b,c)
|
||||
#define IOleObject_InitFromData(p,a,b,c) (p)->lpVtbl->InitFromData(p,a,b,c)
|
||||
#define IOleObject_GetClipboardData(p,a,b) (p)->lpVtbl->GetClipboardData(p,a,b)
|
||||
#define IOleObject_DoVerb(p,a,b,c,d,e,f) (p)->lpVtbl->DoVerb(p,a,b,c,d,e,f)
|
||||
#define IOleObject_EnumVerbs(p,a) (p)->lpVtbl->EnumVerbs(p,a)
|
||||
#define IOleObject_Update(p) (p)->lpVtbl->Update(p)
|
||||
#define IOleObject_IsUpToDate(p) (p)->lpVtbl->IsUpToDate(p)
|
||||
#define IOleObject_GetUserClassID(p,a) (p)->lpVtbl->GetUserClassID(p,a)
|
||||
#define IOleObject_GetUserType(p,a,b) (p)->lpVtbl->GetUserType(p,a,b)
|
||||
#define IOleObject_SetExtent(p,a,b) (p)->lpVtbl->SetExtent(p,a,b)
|
||||
#define IOleObject_GetExtent(p,a,b) (p)->lpVtbl->GetExtent(p,a,b)
|
||||
#define IOleObject_Advise(p,a,b) (p)->lpVtbl->Advise(p,a,b)
|
||||
#define IOleObject_Unadvise(p,a) (p)->lpVtbl->Unadvise(p,a)
|
||||
#define IOleObject_EnumAdvise(p,a) (p)->lpVtbl->EnumAdvise(p,a)
|
||||
#define IOleObject_GetMiscStatus(p,a,b) (p)->lpVtbl->GetMiscStatus(p,a,b)
|
||||
#define IOleObject_SetColorScheme(p,a) (p)->lpVtbl->SetColorScheme(p,a)
|
||||
|
||||
DEFINE_GUID(IID_IOleAdviseHolder, 0x00000111, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleAdviseHolder_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleAdviseHolder_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleAdviseHolder_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IOleAdviseHolder methods ***/
|
||||
#define IOleAdviseHolder_Advise(p,a,b) (p)->lpVtbl->Advise(p,a,b)
|
||||
#define IOleAdviseHolder_Unadvise(p,a) (p)->lpVtbl->Unadvise(p,a)
|
||||
#define IOleAdviseHolder_EnumAdvise(p,a) (p)->lpVtbl->EnumAdvise(p,a)
|
||||
#define IOleAdviseHolder_SendOnRename(p,a) (p)->lpVtbl->SendOnRename(p,a)
|
||||
#define IOleAdviseHolder_SendOnSave(p) (p)->lpVtbl->SendOnSave(p)
|
||||
#define IOleAdviseHolder_SendOnClose(p) (p)->lpVtbl->SendOnClose(p)
|
||||
|
||||
DEFINE_GUID(IID_IContinue, 0x0000012a, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_IViewObject, 0x0000010d, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IViewObject_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IViewObject_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IViewObject_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IViewObject methods ***/
|
||||
#define IViewObject_Draw(p,a,b,c,d,e,f,g,h,i,j) (p)->lpVtbl->Draw(p,a,b,c,d,e,f,g,h,i,j)
|
||||
#define IViewObject_GetColorSet(p,a,b,c,d,e,f) (p)->lpVtbl->GetColorSet(p,a,b,c,d,e,f)
|
||||
#define IViewObject_Freeze(p,a,b,c,d) (p)->lpVtbl->Freeze(p,a,b,c,d)
|
||||
#define IViewObject_Unfreeze(p,a) (p)->lpVtbl->Unfreeze(p,a)
|
||||
#define IViewObject_SetAdvise(p,a,b,c) (p)->lpVtbl->SetAdvise(p,a,b,c)
|
||||
#define IViewObject_GetAdvise(p,a,b,c) (p)->lpVtbl->GetAdvise(p,a,b,c)
|
||||
|
||||
DEFINE_GUID(IID_IViewObject2, 0x00000127, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IViewObject2_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IViewObject2_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IViewObject2_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IViewObject methods ***/
|
||||
#define IViewObject2_Draw(p,a,b,c,d,e,f,g,h,i,j) (p)->lpVtbl->Draw(p,a,b,c,d,e,f,g,h,i,j)
|
||||
#define IViewObject2_GetColorSet(p,a,b,c,d,e,f) (p)->lpVtbl->GetColorSet(p,a,b,c,d,e,f)
|
||||
#define IViewObject2_Freeze(p,a,b,c,d) (p)->lpVtbl->Freeze(p,a,b,c,d)
|
||||
#define IViewObject2_Unfreeze(p,a) (p)->lpVtbl->Unfreeze(p,a)
|
||||
#define IViewObject2_SetAdvise(p,a,b,c) (p)->lpVtbl->SetAdvise(p,a,b,c)
|
||||
#define IViewObject2_GetAdvise(p,a,b,c) (p)->lpVtbl->GetAdvise(p,a,b,c)
|
||||
/*** IViewObject2 methods ***/
|
||||
#define IViewObject2_GetExtent(p,a,b,c,d) (p)->lpVtbl->GetExtent(p,a,b,c,d)
|
||||
|
||||
DEFINE_GUID(IID_IDropSource, 0x00000121, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IDropSource_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IDropSource_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IDropSource_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IDropSource methods ***/
|
||||
#define IDropSource_QueryContinueDrag(p,a,b) (p)->lpVtbl->QueryContinueDrag(p,a,b)
|
||||
#define IDropSource_GiveFeedback(p,a) (p)->lpVtbl->GiveFeedback(p,a)
|
||||
|
||||
DEFINE_GUID(IID_IDropTarget, 0x00000122, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IDropTarget_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IDropTarget_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IDropTarget_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IDropTarget methods ***/
|
||||
#define IDropTarget_DragEnter(p,a,b,c,d) (p)->lpVtbl->DragEnter(p,a,b,c,d)
|
||||
#define IDropTarget_DragOver(p,a,b,c) (p)->lpVtbl->DragOver(p,a,b,c)
|
||||
#define IDropTarget_DragLeave(p) (p)->lpVtbl->DragLeave(p)
|
||||
#define IDropTarget_Drop(p,a,b,c,d) (p)->lpVtbl->Drop(p,a,b,c,d)
|
||||
|
||||
typedef enum tagBINDSPEED {
|
||||
BINDSPEED_INDEFINITE = 1,
|
||||
BINDSPEED_MODERATE = 2,
|
||||
BINDSPEED_IMMEDIATE = 3
|
||||
} BINDSPEED;
|
||||
#ifndef __IOleCache2_FWD_DEFINED__
|
||||
#define __IOleCache2_FWD_DEFINED__
|
||||
typedef struct IOleCache2 IOleCache2;
|
||||
#endif
|
||||
|
||||
typedef IOleCache2 *LPOLECACHE2;
|
||||
|
||||
#define UPDFCACHE_NODATACACHE (0x1)
|
||||
|
||||
#define UPDFCACHE_ONSAVECACHE (0x2)
|
||||
|
||||
#define UPDFCACHE_ONSTOPCACHE (0x4)
|
||||
|
||||
#define UPDFCACHE_NORMALCACHE (0x8)
|
||||
|
||||
#define UPDFCACHE_IFBLANK (0x10)
|
||||
|
||||
#define UPDFCACHE_ONLYIFBLANK (0x80000000)
|
||||
|
||||
#define UPDFCACHE_IFBLANKORONSAVECACHE (UPDFCACHE_IFBLANK | UPDFCACHE_ONSAVECACHE)
|
||||
|
||||
#define UPDFCACHE_ALL ((DWORD)~UPDFCACHE_ONLYIFBLANK)
|
||||
|
||||
#define UPDFCACHE_ALLBUTNODATACACHE (UPDFCACHE_ALL & (DWORD)~UPDFCACHE_NODATACACHE)
|
||||
|
||||
typedef enum tagDISCARDCACHE {
|
||||
DISCARDCACHE_SAVEIFDIRTY = 0,
|
||||
DISCARDCACHE_NOSAVE = 1
|
||||
} DISCARDCACHE;
|
||||
|
||||
/*****************************************************************************
|
||||
* IOleCache2 interface
|
||||
*/
|
||||
#ifndef __IOleCache2_INTERFACE_DEFINED__
|
||||
#define __IOleCache2_INTERFACE_DEFINED__
|
||||
|
||||
#if defined(__cplusplus) && !defined(CINTERFACE)
|
||||
struct IOleCache2 : public IOleCache
|
||||
{
|
||||
virtual HRESULT STDMETHODCALLTYPE UpdateCache(
|
||||
LPDATAOBJECT pDataObject,
|
||||
DWORD grfUpdf,
|
||||
LPVOID pReserved) = 0;
|
||||
|
||||
virtual HRESULT STDMETHODCALLTYPE DiscardCache(
|
||||
DWORD dwDiscardOptions) = 0;
|
||||
|
||||
};
|
||||
#else
|
||||
typedef struct IOleCache2Vtbl IOleCache2Vtbl;
|
||||
struct IOleCache2 {
|
||||
const IOleCache2Vtbl* lpVtbl;
|
||||
};
|
||||
struct IOleCache2Vtbl {
|
||||
ICOM_MSVTABLE_COMPAT_FIELDS
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *QueryInterface)(
|
||||
IOleCache2* This,
|
||||
REFIID riid,
|
||||
void** ppvObject);
|
||||
|
||||
ULONG (STDMETHODCALLTYPE *AddRef)(
|
||||
IOleCache2* This);
|
||||
|
||||
ULONG (STDMETHODCALLTYPE *Release)(
|
||||
IOleCache2* This);
|
||||
|
||||
/*** IOleCache methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *Cache)(
|
||||
IOleCache2* This,
|
||||
FORMATETC* pformatetc,
|
||||
DWORD advf,
|
||||
DWORD* pdwConnection);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *Uncache)(
|
||||
IOleCache2* This,
|
||||
DWORD dwConnection);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *EnumCache)(
|
||||
IOleCache2* This,
|
||||
IEnumSTATDATA** ppenumSTATDATA);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *InitCache)(
|
||||
IOleCache2* This,
|
||||
IDataObject* pDataObject);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *SetData)(
|
||||
IOleCache2* This,
|
||||
FORMATETC* pformatetc,
|
||||
STGMEDIUM* pmedium,
|
||||
BOOL fRelease);
|
||||
|
||||
/*** IOleCache2 methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *UpdateCache)(
|
||||
IOleCache2* This,
|
||||
LPDATAOBJECT pDataObject,
|
||||
DWORD grfUpdf,
|
||||
LPVOID pReserved);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *DiscardCache)(
|
||||
IOleCache2* This,
|
||||
DWORD dwDiscardOptions);
|
||||
|
||||
};
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleCache2_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleCache2_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleCache2_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IOleCache methods ***/
|
||||
#define IOleCache2_Cache(p,a,b,c) (p)->lpVtbl->Cache(p,a,b,c)
|
||||
#define IOleCache2_Uncache(p,a) (p)->lpVtbl->Uncache(p,a)
|
||||
#define IOleCache2_EnumCache(p,a) (p)->lpVtbl->EnumCache(p,a)
|
||||
#define IOleCache2_InitCache(p,a) (p)->lpVtbl->InitCache(p,a)
|
||||
#define IOleCache2_SetData(p,a,b,c) (p)->lpVtbl->SetData(p,a,b,c)
|
||||
/*** IOleCache2 methods ***/
|
||||
#define IOleCache2_UpdateCache(p,a,b,c) (p)->lpVtbl->UpdateCache(p,a,b,c)
|
||||
#define IOleCache2_DiscardCache(p,a) (p)->lpVtbl->DiscardCache(p,a)
|
||||
|
||||
#endif
|
||||
|
||||
#define IOleCache2_METHODS \
|
||||
ICOM_MSVTABLE_COMPAT_FIELDS \
|
||||
/*** IUnknown methods ***/ \
|
||||
STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE; \
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE; \
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE; \
|
||||
/*** IOleCache methods ***/ \
|
||||
STDMETHOD_(HRESULT,Cache)(THIS_ FORMATETC* pformatetc, DWORD advf, DWORD* pdwConnection) PURE; \
|
||||
STDMETHOD_(HRESULT,Uncache)(THIS_ DWORD dwConnection) PURE; \
|
||||
STDMETHOD_(HRESULT,EnumCache)(THIS_ IEnumSTATDATA** ppenumSTATDATA) PURE; \
|
||||
STDMETHOD_(HRESULT,InitCache)(THIS_ IDataObject* pDataObject) PURE; \
|
||||
STDMETHOD_(HRESULT,SetData)(THIS_ FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) PURE; \
|
||||
/*** IOleCache2 methods ***/ \
|
||||
STDMETHOD_(HRESULT,UpdateCache)(THIS_ LPDATAOBJECT pDataObject, DWORD grfUpdf, LPVOID pReserved) PURE; \
|
||||
STDMETHOD_(HRESULT,DiscardCache)(THIS_ DWORD dwDiscardOptions) PURE;
|
||||
|
||||
HRESULT CALLBACK IOleCache2_RemoteUpdateCache_Proxy(
|
||||
IOleCache2* This,
|
||||
LPDATAOBJECT pDataObject,
|
||||
DWORD grfUpdf,
|
||||
LONG_PTR pReserved);
|
||||
void __RPC_STUB IOleCache2_RemoteUpdateCache_Stub(
|
||||
struct IRpcStubBuffer* This,
|
||||
struct IRpcChannelBuffer* pRpcChannelBuffer,
|
||||
PRPC_MESSAGE pRpcMessage,
|
||||
DWORD* pdwStubPhase);
|
||||
HRESULT CALLBACK IOleCache2_UpdateCache_Proxy(
|
||||
IOleCache2* This,
|
||||
LPDATAOBJECT pDataObject,
|
||||
DWORD grfUpdf,
|
||||
LPVOID pReserved);
|
||||
HRESULT __RPC_STUB IOleCache2_UpdateCache_Stub(
|
||||
IOleCache2* This,
|
||||
LPDATAOBJECT pDataObject,
|
||||
DWORD grfUpdf,
|
||||
LONG_PTR pReserved);
|
||||
HRESULT CALLBACK IOleCache2_DiscardCache_Proxy(
|
||||
IOleCache2* This,
|
||||
DWORD dwDiscardOptions);
|
||||
void __RPC_STUB IOleCache2_DiscardCache_Stub(
|
||||
struct IRpcStubBuffer* This,
|
||||
struct IRpcChannelBuffer* pRpcChannelBuffer,
|
||||
PRPC_MESSAGE pRpcMessage,
|
||||
DWORD* pdwStubPhase);
|
||||
|
||||
#endif /* __IOleCache2_INTERFACE_DEFINED__ */
|
||||
|
||||
#ifndef __IOleCacheControl_FWD_DEFINED__
|
||||
#define __IOleCacheControl_FWD_DEFINED__
|
||||
typedef struct IOleCacheControl IOleCacheControl;
|
||||
#endif
|
||||
|
||||
typedef IOleCacheControl *LPOLECACHECONTROL;
|
||||
|
||||
/*****************************************************************************
|
||||
* IOleCacheControl interface
|
||||
*/
|
||||
#ifndef __IOleCacheControl_INTERFACE_DEFINED__
|
||||
#define __IOleCacheControl_INTERFACE_DEFINED__
|
||||
|
||||
#if defined(__cplusplus) && !defined(CINTERFACE)
|
||||
struct IOleCacheControl : public IUnknown
|
||||
{
|
||||
virtual HRESULT STDMETHODCALLTYPE OnRun(
|
||||
LPDATAOBJECT pDataObject) = 0;
|
||||
|
||||
virtual HRESULT STDMETHODCALLTYPE OnStop(
|
||||
) = 0;
|
||||
|
||||
};
|
||||
#else
|
||||
typedef struct IOleCacheControlVtbl IOleCacheControlVtbl;
|
||||
struct IOleCacheControl {
|
||||
const IOleCacheControlVtbl* lpVtbl;
|
||||
};
|
||||
struct IOleCacheControlVtbl {
|
||||
ICOM_MSVTABLE_COMPAT_FIELDS
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *QueryInterface)(
|
||||
IOleCacheControl* This,
|
||||
REFIID riid,
|
||||
void** ppvObject);
|
||||
|
||||
ULONG (STDMETHODCALLTYPE *AddRef)(
|
||||
IOleCacheControl* This);
|
||||
|
||||
ULONG (STDMETHODCALLTYPE *Release)(
|
||||
IOleCacheControl* This);
|
||||
|
||||
/*** IOleCacheControl methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *OnRun)(
|
||||
IOleCacheControl* This,
|
||||
LPDATAOBJECT pDataObject);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *OnStop)(
|
||||
IOleCacheControl* This);
|
||||
|
||||
};
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleCacheControl_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IOleCacheControl_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IOleCacheControl_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IOleCacheControl methods ***/
|
||||
#define IOleCacheControl_OnRun(p,a) (p)->lpVtbl->OnRun(p,a)
|
||||
#define IOleCacheControl_OnStop(p) (p)->lpVtbl->OnStop(p)
|
||||
|
||||
#endif
|
||||
|
||||
#define IOleCacheControl_METHODS \
|
||||
ICOM_MSVTABLE_COMPAT_FIELDS \
|
||||
/*** IUnknown methods ***/ \
|
||||
STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE; \
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE; \
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE; \
|
||||
/*** IOleCacheControl methods ***/ \
|
||||
STDMETHOD_(HRESULT,OnRun)(THIS_ LPDATAOBJECT pDataObject) PURE; \
|
||||
STDMETHOD_(HRESULT,OnStop)(THIS) PURE;
|
||||
|
||||
HRESULT CALLBACK IOleCacheControl_OnRun_Proxy(
|
||||
IOleCacheControl* This,
|
||||
LPDATAOBJECT pDataObject);
|
||||
void __RPC_STUB IOleCacheControl_OnRun_Stub(
|
||||
struct IRpcStubBuffer* This,
|
||||
struct IRpcChannelBuffer* pRpcChannelBuffer,
|
||||
PRPC_MESSAGE pRpcMessage,
|
||||
DWORD* pdwStubPhase);
|
||||
HRESULT CALLBACK IOleCacheControl_OnStop_Proxy(
|
||||
IOleCacheControl* This);
|
||||
void __RPC_STUB IOleCacheControl_OnStop_Stub(
|
||||
struct IRpcStubBuffer* This,
|
||||
struct IRpcChannelBuffer* pRpcChannelBuffer,
|
||||
PRPC_MESSAGE pRpcMessage,
|
||||
DWORD* pdwStubPhase);
|
||||
|
||||
#endif /* __IOleCacheControl_INTERFACE_DEFINED__ */
|
||||
|
||||
#endif /* __WINE_OLEIDL_H */
|
|
@ -1,304 +1,27 @@
|
|||
#ifndef _PRSHT_H
|
||||
#define _PRSHT_H
|
||||
#if __GNUC__ >=3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
/*
|
||||
* Copyright (C) the Wine project
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#include_next <prsht.h>
|
||||
|
||||
#define MAXPROPPAGES 100
|
||||
#define PSP_DEFAULT 0
|
||||
#define PSP_DLGINDIRECT 1
|
||||
#define PSP_USEHICON 2
|
||||
#define PSP_USEICONID 4
|
||||
#define PSP_USETITLE 8
|
||||
#define PSP_RTLREADING 16
|
||||
#define PSP_HASHELP 32
|
||||
#define PSP_USEREFPARENT 64
|
||||
#define PSP_USECALLBACK 128
|
||||
#define PSP_PREMATURE 1024
|
||||
#if (_WIN32_IE >= 0x0400)
|
||||
#define PSP_HIDEHEADER 2048
|
||||
#define PSP_USEHEADERTITLE 4096
|
||||
#define PSP_USEHEADERSUBTITLE 8192
|
||||
#endif
|
||||
#define PSPCB_RELEASE 1
|
||||
#define PSPCB_CREATE 2
|
||||
#define PSH_DEFAULT 0
|
||||
#define PSH_PROPTITLE 1
|
||||
#define PSH_USEHICON 2
|
||||
#define PSH_USEICONID 4
|
||||
#define PSH_PROPSHEETPAGE 8
|
||||
#define PSH_WIZARDHASFINISH 16
|
||||
#define PSH_WIZARD 32
|
||||
#define PSH_USEPSTARTPAGE 64
|
||||
#define PSH_NOAPPLYNOW 128
|
||||
#define PSH_USECALLBACK 256
|
||||
#define PSH_HASHELP 512
|
||||
#define PSH_MODELESS 1024
|
||||
#define PSH_RTLREADING 2048
|
||||
#define PSH_WIZARDCONTEXTHELP 4096
|
||||
#if (_WIN32_IE >= 0x0400)
|
||||
#define PSH_WATERMARK 32768
|
||||
#define PSH_USEHBMWATERMARK 65536
|
||||
#define PSH_USEHPLWATERMARK 131072
|
||||
#define PSH_STRETCHWATERMARK 262144
|
||||
#define PSH_HEADER 524288
|
||||
#define PSH_USEHBMHEADER 1048576
|
||||
#define PSH_USEPAGELANG 2097152
|
||||
#if (_WIN32_IE < 0x0500)
|
||||
#define PSH_WIZARD97 0x00002000
|
||||
#else
|
||||
#define PSH_WIZARD97 0x01000000
|
||||
#endif
|
||||
#endif /* _WIN32_IE >= 0x0400 */
|
||||
#if (_WIN32_IE >= 0x0500)
|
||||
#define PSH_WIZARD_LITE 0x400000
|
||||
#define PSH_NOCONTEXTHELP 0x2000000
|
||||
#endif
|
||||
#define PSCB_INITIALIZED 1
|
||||
#define PSCB_PRECREATE 2
|
||||
#define PSM_GETTABCONTROL 1140
|
||||
#define PSM_GETCURRENTPAGEHWND 1142
|
||||
#define PSM_ISDIALOGMESSAGE 1141
|
||||
#define PSM_PRESSBUTTON 1137
|
||||
#define PSM_SETCURSELID 1138
|
||||
#define PSM_SETFINISHTEXTW 1145
|
||||
#define PSM_SETFINISHTEXTA 1139
|
||||
#define PSN_FIRST (-200)
|
||||
#define PSN_LAST (-299)
|
||||
#define PSN_APPLY (-202)
|
||||
#define PSN_HELP (-205)
|
||||
#define PSN_KILLACTIVE (-201)
|
||||
#define PSN_QUERYCANCEL (-209)
|
||||
#define PSN_RESET (-203)
|
||||
#define PSN_SETACTIVE (-200)
|
||||
#define PSN_WIZBACK (-206)
|
||||
#define PSN_WIZFINISH (-208)
|
||||
#define PSN_WIZNEXT (-207)
|
||||
#define PSNRET_NOERROR 0
|
||||
#define PSNRET_INVALID 1
|
||||
#define PSNRET_INVALID_NOCHANGEPAGE 2
|
||||
#define ID_PSRESTARTWINDOWS 2
|
||||
#define ID_PSREBOOTSYSTEM 3
|
||||
#define WIZ_CXDLG 276
|
||||
#define WIZ_CYDLG 140
|
||||
#define WIZ_CXBMP 80
|
||||
#define WIZ_BODYX 92
|
||||
#define WIZ_BODYCX 184
|
||||
#define PROP_SM_CXDLG 212
|
||||
#define PROP_SM_CYDLG 188
|
||||
#define PROP_MED_CXDLG 227
|
||||
#define PROP_MED_CYDLG 215
|
||||
#define PROP_LG_CXDLG 252
|
||||
#define PROP_LG_CYDLG 218
|
||||
#define PSBTN_MAX 6
|
||||
#define PSBTN_BACK 0
|
||||
#define PSBTN_NEXT 1
|
||||
#define PSBTN_FINISH 2
|
||||
#define PSBTN_OK 3
|
||||
#define PSBTN_APPLYNOW 4
|
||||
#define PSBTN_CANCEL 5
|
||||
#define PSBTN_HELP 6
|
||||
#define PSWIZB_BACK 1
|
||||
#define PSWIZB_NEXT 2
|
||||
#define PSWIZB_FINISH 4
|
||||
#define PSWIZB_DISABLEDFINISH 8
|
||||
#define PSM_SETWIZBUTTONS (WM_USER+112)
|
||||
#define PSM_APPLY (WM_USER+110)
|
||||
#define PSM_UNCHANGED (WM_USER+109)
|
||||
#define PSM_QUERYSIBLINGS (WM_USER+108)
|
||||
#define PSM_CANCELTOCLOSE (WM_USER+107)
|
||||
#define PSM_REBOOTSYSTEM (WM_USER+106)
|
||||
#define PSM_RESTARTWINDOWS (WM_USER+105)
|
||||
#define PSM_CHANGED (WM_USER+104)
|
||||
#define PSM_ADDPAGE (WM_USER+103)
|
||||
#define PSM_REMOVEPAGE (WM_USER+102)
|
||||
#define PSM_SETCURSEL (WM_USER+101)
|
||||
#define PSM_SETTITLEA (WM_USER+111)
|
||||
#define PSM_SETTITLEW (WM_USER+120)
|
||||
#ifndef __WINE_PRSHT_H
|
||||
#define __WINE_PRSHT_H
|
||||
|
||||
#ifndef RC_INVOKED
|
||||
#define PSH_WIZARD97_OLD 0x00002000 /* for IE < 5 */
|
||||
#define PSH_WIZARD97_NEW 0x01000000 /* for IE >= 5 */
|
||||
|
||||
#pragma pack(push,8)
|
||||
typedef struct _PROPSHEETPAGEA {
|
||||
DWORD dwSize;
|
||||
DWORD dwFlags;
|
||||
HINSTANCE hInstance;
|
||||
_ANONYMOUS_UNION union {
|
||||
LPCSTR pszTemplate;
|
||||
LPCDLGTEMPLATE pResource;
|
||||
} DUMMYUNIONNAME;
|
||||
_ANONYMOUS_UNION union {
|
||||
HICON hIcon;
|
||||
LPCSTR pszIcon;
|
||||
} DUMMYUNIONNAME2;
|
||||
LPCSTR pszTitle;
|
||||
DLGPROC pfnDlgProc;
|
||||
LPARAM lParam;
|
||||
UINT(CALLBACK *pfnCallback)(HWND,UINT,struct _PROPSHEETPAGEA*);
|
||||
UINT *pcRefParent;
|
||||
#if (_WIN32_IE >= 0x0400)
|
||||
LPCSTR pszHeaderTitle;
|
||||
LPCSTR pszHeaderSubTitle;
|
||||
#endif
|
||||
} PROPSHEETPAGEA,*LPPROPSHEETPAGEA;
|
||||
typedef const PROPSHEETPAGEA *LPCPROPSHEETPAGEA;
|
||||
typedef struct _PROPSHEETPAGEW {
|
||||
DWORD dwSize;
|
||||
DWORD dwFlags;
|
||||
HINSTANCE hInstance;
|
||||
_ANONYMOUS_UNION union {
|
||||
LPCWSTR pszTemplate;
|
||||
LPCDLGTEMPLATE pResource;
|
||||
} DUMMYUNIONNAME;
|
||||
_ANONYMOUS_UNION union {
|
||||
HICON hIcon;
|
||||
LPCWSTR pszIcon;
|
||||
} DUMMYUNIONNAME2;
|
||||
LPCWSTR pszTitle;
|
||||
DLGPROC pfnDlgProc;
|
||||
LPARAM lParam;
|
||||
UINT(CALLBACK *pfnCallback)(HWND,UINT,struct _PROPSHEETPAGEW*);
|
||||
UINT *pcRefParent;
|
||||
#if (_WIN32_IE >= 0x0400)
|
||||
LPCWSTR pszHeaderTitle;
|
||||
LPCWSTR pszHeaderSubTitle;
|
||||
#endif
|
||||
} PROPSHEETPAGEW,*LPPROPSHEETPAGEW;
|
||||
typedef const PROPSHEETPAGEW *LPCPROPSHEETPAGEW;
|
||||
typedef UINT(CALLBACK *LPFNPSPCALLBACKA)(HWND,UINT,LPPROPSHEETPAGEA);
|
||||
typedef UINT(CALLBACK *LPFNPSPCALLBACKW)(HWND,UINT,LPPROPSHEETPAGEW);
|
||||
typedef int(CALLBACK *PFNPROPSHEETCALLBACK)(HWND,UINT,LPARAM);
|
||||
DECLARE_HANDLE(HPROPSHEETPAGE);
|
||||
typedef struct _PROPSHEETHEADERA {
|
||||
DWORD dwSize;
|
||||
DWORD dwFlags;
|
||||
HWND hwndParent;
|
||||
HINSTANCE hInstance;
|
||||
_ANONYMOUS_UNION union {
|
||||
HICON hIcon;
|
||||
LPCSTR pszIcon;
|
||||
}DUMMYUNIONNAME;
|
||||
LPCSTR pszCaption;
|
||||
UINT nPages;
|
||||
_ANONYMOUS_UNION union {
|
||||
UINT nStartPage;
|
||||
LPCSTR pStartPage;
|
||||
}DUMMYUNIONNAME2;
|
||||
_ANONYMOUS_UNION union {
|
||||
LPCPROPSHEETPAGEA ppsp;
|
||||
HPROPSHEETPAGE *phpage;
|
||||
}DUMMYUNIONNAME3;
|
||||
PFNPROPSHEETCALLBACK pfnCallback;
|
||||
#if (_WIN32_IE >= 0x0400)
|
||||
_ANONYMOUS_UNION union {
|
||||
HBITMAP hbmWatermark;
|
||||
LPCSTR pszbmWatermark;
|
||||
} DUMMYUNIONNAME4;
|
||||
HPALETTE hplWatermark;
|
||||
_ANONYMOUS_UNION union {
|
||||
HBITMAP hbmHeader;
|
||||
LPCSTR pszbmHeader;
|
||||
} DUMMYUNIONNAME5;
|
||||
#endif
|
||||
} PROPSHEETHEADERA,*LPPROPSHEETHEADERA;
|
||||
typedef const PROPSHEETHEADERA *LPCPROPSHEETHEADERA;
|
||||
typedef struct _PROPSHEETHEADERW {
|
||||
DWORD dwSize;
|
||||
DWORD dwFlags;
|
||||
HWND hwndParent;
|
||||
HINSTANCE hInstance;
|
||||
_ANONYMOUS_UNION union {
|
||||
HICON hIcon;
|
||||
LPCWSTR pszIcon;
|
||||
}DUMMYUNIONNAME;
|
||||
LPCWSTR pszCaption;
|
||||
UINT nPages;
|
||||
_ANONYMOUS_UNION union {
|
||||
UINT nStartPage;
|
||||
LPCWSTR pStartPage;
|
||||
}DUMMYUNIONNAME2;
|
||||
_ANONYMOUS_UNION union {
|
||||
LPCPROPSHEETPAGEW ppsp;
|
||||
HPROPSHEETPAGE *phpage;
|
||||
}DUMMYUNIONNAME3;
|
||||
PFNPROPSHEETCALLBACK pfnCallback;
|
||||
#if (_WIN32_IE >= 0x0400)
|
||||
_ANONYMOUS_UNION union {
|
||||
HBITMAP hbmWatermark;
|
||||
LPCWSTR pszbmWatermark;
|
||||
} DUMMYUNIONNAME4;
|
||||
HPALETTE hplWatermark;
|
||||
_ANONYMOUS_UNION union {
|
||||
HBITMAP hbmHeader;
|
||||
LPCWSTR pszbmHeader;
|
||||
} DUMMYUNIONNAME5;
|
||||
#endif
|
||||
} PROPSHEETHEADERW,*LPPROPSHEETHEADERW;
|
||||
typedef const PROPSHEETHEADERW *LPCPROPSHEETHEADERW;
|
||||
typedef BOOL(CALLBACK *LPFNADDPROPSHEETPAGE)(HPROPSHEETPAGE,LPARAM);
|
||||
typedef BOOL(CALLBACK *LPFNADDPROPSHEETPAGES)(LPVOID,LPFNADDPROPSHEETPAGE,LPARAM);
|
||||
typedef struct _PSHNOTIFY {
|
||||
NMHDR hdr;
|
||||
LPARAM lParam;
|
||||
} PSHNOTIFY,*LPPSHNOTIFY;
|
||||
|
||||
#pragma pack(pop)
|
||||
|
||||
HPROPSHEETPAGE WINAPI CreatePropertySheetPageA(LPCPROPSHEETPAGEA);
|
||||
HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW);
|
||||
BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE);
|
||||
int WINAPI PropertySheetA(LPCPROPSHEETHEADERA);
|
||||
int WINAPI PropertySheetW(LPCPROPSHEETHEADERW);
|
||||
#define PropSheet_AddPage(d,p) SendMessage(d,PSM_ADDPAGE,0,(LPARAM)p)
|
||||
#define PropSheet_Apply(d) SendMessage(d,PSM_APPLY,0,0)
|
||||
#define PropSheet_CancelToClose(d) SendMessage(d,PSM_CANCELTOCLOSE,0,0)
|
||||
#define PropSheet_Changed(d,w) SendMessage(d,PSM_CHANGED,(WPARAM)w,0)
|
||||
#define PropSheet_GetCurrentPageHwnd(d) (HWND)SendMessage(d,PSM_GETCURRENTPAGEHWND,0,0)
|
||||
#define PropSheet_GetTabControl(d) (HWND)SendMessage(d,PSM_GETTABCONTROL,0,0)
|
||||
#define PropSheet_IsDialogMessage(d,m) (BOOL)SendMessage(d,PSM_ISDIALOGMESSAGE,0,(LPARAM)m)
|
||||
#define PropSheet_PressButton(d,i) SendMessage(d,PSM_PRESSBUTTON,i,0)
|
||||
#define PropSheet_QuerySiblings(d,w,l) SendMessage(d,PSM_QUERYSIBLINGS,w,l)
|
||||
#define PropSheet_RebootSystem(d) SendMessage(d,PSM_REBOOTSYSTEM,0,0)
|
||||
#define PropSheet_RemovePage(d,i,p) SendMessage(d,PSM_REMOVEPAGE,i,(LPARAM)p)
|
||||
#define PropSheet_RestartWindows(d) SendMessage(d,PSM_RESTARTWINDOWS,0,0)
|
||||
#define PropSheet_SetCurSel(d,p,i) SendMessage(d,PSM_SETCURSEL,i,(LPARAM)p)
|
||||
#define PropSheet_SetCurSelByID(d,i) SendMessage(d,PSM_SETCURSELID,0,i)
|
||||
#define PropSheet_SetFinishText(d,s) SendMessage(d,PSM_SETFINISHTEXT,0,(LPARAM)s)
|
||||
#define PropSheet_SetTitle(d,w,s) SendMessage(d,PSM_SETTITLE,w,(LPARAM)s)
|
||||
#define PropSheet_SetWizButtons(d,f) PostMessage(d,PSM_SETWIZBUTTONS,0,(LPARAM)f)
|
||||
#define PropSheet_UnChanged(d,w) SendMessage(d,PSM_UNCHANGED,(WPARAM)w,0)
|
||||
#endif
|
||||
|
||||
#ifdef UNICODE
|
||||
#define LPFNPSPCALLBACK LPFNPSPCALLBACKW
|
||||
#define PROPSHEETPAGE PROPSHEETPAGEW
|
||||
#define LPPROPSHEETPAGE LPPROPSHEETPAGEW
|
||||
#define LPCPROPSHEETPAGE LPCPROPSHEETPAGEW
|
||||
#define PROPSHEETHEADER PROPSHEETHEADERW
|
||||
#define LPPROPSHEETHEADER LPPROPSHEETHEADERW
|
||||
#define LPCPROPSHEETHEADER LPCPROPSHEETHEADERW
|
||||
#define PSM_SETTITLE PSM_SETTITLEW
|
||||
#define PSM_SETFINISHTEXT PSM_SETFINISHTEXTW
|
||||
#define CreatePropertySheetPage CreatePropertySheetPageW
|
||||
#define PropertySheet PropertySheetW
|
||||
#else
|
||||
#define LPFNPSPCALLBACK LPFNPSPCALLBACKA
|
||||
#define PROPSHEETPAGE PROPSHEETPAGEA
|
||||
#define LPPROPSHEETPAGE LPPROPSHEETPAGEA
|
||||
#define LPCPROPSHEETPAGE LPCPROPSHEETPAGEA
|
||||
#define PROPSHEETHEADER PROPSHEETHEADERA
|
||||
#define LPPROPSHEETHEADER LPPROPSHEETHEADERA
|
||||
#define LPCPROPSHEETHEADER LPCPROPSHEETHEADERA
|
||||
#define PSM_SETTITLE PSM_SETTITLEA
|
||||
#define PSM_SETFINISHTEXT PSM_SETFINISHTEXTA
|
||||
#define CreatePropertySheetPage CreatePropertySheetPageA
|
||||
#define PropertySheet PropertySheetA
|
||||
#endif
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
#endif /* __WINE_PRSHT_H */
|
||||
|
|
18
reactos/include/wine/servprov.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef __WINE_SERVPROV_H
|
||||
#define __WINE_SERVPROV_H
|
||||
|
||||
#include <rpc.h>
|
||||
#include <rpcndr.h>
|
||||
#include_next <servprov.h>
|
||||
|
||||
DEFINE_GUID(IID_IServiceProvider, 0x6d5140c1, 0x7436, 0x11ce, 0x80,0x34, 0x00,0xaa,0x00,0x60,0x09,0xfa);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IServiceProvider_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IServiceProvider_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IServiceProvider_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IServiceProvider methods ***/
|
||||
#define IServiceProvider_QueryService(p,a,b,c) (p)->lpVtbl->QueryService(p,a,b,c)
|
||||
|
||||
|
||||
#endif /* __WINE_SERVPROV_H */
|
289
reactos/include/wine/shellapi.h
Normal file
|
@ -0,0 +1,289 @@
|
|||
#ifndef _SHELLAPI_H
|
||||
#define _SHELLAPI_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#define WINSHELLAPI DECLSPEC_IMPORT
|
||||
#define ABE_LEFT 0
|
||||
#define ABE_TOP 1
|
||||
#define ABE_RIGHT 2
|
||||
#define ABE_BOTTOM 3
|
||||
#define SEE_MASK_CLASSNAME 1
|
||||
#define SEE_MASK_CLASSKEY 3
|
||||
#define SEE_MASK_IDLIST 4
|
||||
#define SEE_MASK_INVOKEIDLIST 12
|
||||
#define SEE_MASK_ICON 16
|
||||
#define SEE_MASK_HOTKEY 32
|
||||
#define SEE_MASK_NOCLOSEPROCESS 64
|
||||
#define SEE_MASK_CONNECTNETDRV 128
|
||||
#define SEE_MASK_FLAG_DDEWAIT 256
|
||||
#define SEE_MASK_DOENVSUBST 512
|
||||
#define SEE_MASK_FLAG_NO_UI 1024
|
||||
#define SEE_MASK_UNICODE 65536
|
||||
#define ABM_NEW 0
|
||||
#define ABM_REMOVE 1
|
||||
#define ABM_QUERYPOS 2
|
||||
#define ABM_SETPOS 3
|
||||
#define ABM_GETSTATE 4
|
||||
#define ABM_GETTASKBARPOS 5
|
||||
#define ABM_ACTIVATE 6
|
||||
#define ABM_GETAUTOHIDEBAR 7
|
||||
#define ABM_SETAUTOHIDEBAR 8
|
||||
#define ABM_WINDOWPOSCHANGED 9
|
||||
#define ABN_STATECHANGE 0
|
||||
#define ABN_POSCHANGED 1
|
||||
#define ABN_FULLSCREENAPP 2
|
||||
#define ABN_WINDOWARRANGE 3
|
||||
#define NIM_ADD 0
|
||||
#define NIM_MODIFY 1
|
||||
#define NIM_DELETE 2
|
||||
#define NIF_MESSAGE 1
|
||||
#define NIF_ICON 2
|
||||
#define NIF_TIP 4
|
||||
#define SE_ERR_FNF 2
|
||||
#define SE_ERR_PNF 3
|
||||
#define SE_ERR_ACCESSDENIED 5
|
||||
#define SE_ERR_OOM 8
|
||||
#define SE_ERR_DLLNOTFOUND 32
|
||||
#define SE_ERR_SHARE 26
|
||||
#define SE_ERR_ASSOCINCOMPLETE 27
|
||||
#define SE_ERR_DDETIMEOUT 28
|
||||
#define SE_ERR_DDEFAIL 29
|
||||
#define SE_ERR_DDEBUSY 30
|
||||
#define SE_ERR_NOASSOC 31
|
||||
#define FO_MOVE 1
|
||||
#define FO_COPY 2
|
||||
#define FO_DELETE 3
|
||||
#define FO_RENAME 4
|
||||
#define FOF_MULTIDESTFILES 1
|
||||
#define FOF_CONFIRMMOUSE 2
|
||||
#define FOF_SILENT 4
|
||||
#define FOF_RENAMEONCOLLISION 8
|
||||
#define FOF_NOCONFIRMATION 16
|
||||
#define FOF_WANTMAPPINGHANDLE 32
|
||||
#define FOF_ALLOWUNDO 64
|
||||
#define FOF_FILESONLY 128
|
||||
#define FOF_SIMPLEPROGRESS 256
|
||||
#define FOF_NOCONFIRMMKDIR 512
|
||||
#define FOF_NOERRORUI 1024
|
||||
#define PO_DELETE 19
|
||||
#define PO_RENAME 20
|
||||
#define PO_PORTCHANGE 32
|
||||
#define PO_REN_PORT 52
|
||||
#define SHGFI_ICON 256
|
||||
#define SHGFI_DISPLAYNAME 512
|
||||
#define SHGFI_TYPENAME 1024
|
||||
#define SHGFI_ATTRIBUTES 2048
|
||||
#define SHGFI_ICONLOCATION 4096
|
||||
#define SHGFI_EXETYPE 8192
|
||||
#define SHGFI_SYSICONINDEX 16384
|
||||
#define SHGFI_LINKOVERLAY 32768
|
||||
#define SHGFI_SELECTED 65536
|
||||
#define SHGFI_ATTR_SPECIFIED 131072
|
||||
#define SHGFI_LARGEICON 0
|
||||
#define SHGFI_SMALLICON 1
|
||||
#define SHGFI_OPENICON 2
|
||||
#define SHGFI_SHELLICONSIZE 4
|
||||
#define SHGFI_PIDL 8
|
||||
#define SHGFI_USEFILEATTRIBUTES 16
|
||||
#define SHERB_NOCONFIRMATION 1
|
||||
#define SHERB_NOPROGRESSUI 2
|
||||
#define SHERB_NOSOUND 4
|
||||
|
||||
typedef WORD FILEOP_FLAGS;
|
||||
typedef WORD PRINTEROP_FLAGS;
|
||||
#include <pshpack2.h>
|
||||
typedef struct _AppBarData {
|
||||
DWORD cbSize;
|
||||
HWND hWnd;
|
||||
UINT uCallbackMessage;
|
||||
UINT uEdge;
|
||||
RECT rc;
|
||||
LPARAM lParam;
|
||||
} APPBARDATA,*PAPPBARDATA;
|
||||
DECLARE_HANDLE(HDROP);
|
||||
typedef struct _NOTIFYICONDATAA {
|
||||
DWORD cbSize;
|
||||
HWND hWnd;
|
||||
UINT uID;
|
||||
UINT uFlags;
|
||||
UINT uCallbackMessage;
|
||||
HICON hIcon;
|
||||
CHAR szTip[64];
|
||||
} NOTIFYICONDATAA,*PNOTIFYICONDATAA;
|
||||
typedef struct _NOTIFYICONDATAW {
|
||||
DWORD cbSize;
|
||||
HWND hWnd;
|
||||
UINT uID;
|
||||
UINT uFlags;
|
||||
UINT uCallbackMessage;
|
||||
HICON hIcon;
|
||||
WCHAR szTip[64];
|
||||
} NOTIFYICONDATAW,*PNOTIFYICONDATAW;
|
||||
typedef struct _SHELLEXECUTEINFOA {
|
||||
DWORD cbSize;
|
||||
ULONG fMask;
|
||||
HWND hwnd;
|
||||
LPCSTR lpVerb;
|
||||
LPCSTR lpFile;
|
||||
LPCSTR lpParameters;
|
||||
LPCSTR lpDirectory;
|
||||
int nShow;
|
||||
HINSTANCE hInstApp;
|
||||
PVOID lpIDList;
|
||||
LPCSTR lpClass;
|
||||
HKEY hkeyClass;
|
||||
DWORD dwHotKey;
|
||||
HANDLE hIcon;
|
||||
HANDLE hProcess;
|
||||
} SHELLEXECUTEINFOA,*LPSHELLEXECUTEINFOA;
|
||||
typedef struct _SHELLEXECUTEINFOW {
|
||||
DWORD cbSize;
|
||||
ULONG fMask;
|
||||
HWND hwnd;
|
||||
LPCWSTR lpVerb;
|
||||
LPCWSTR lpFile;
|
||||
LPCWSTR lpParameters;
|
||||
LPCWSTR lpDirectory;
|
||||
int nShow;
|
||||
HINSTANCE hInstApp;
|
||||
PVOID lpIDList;
|
||||
LPCWSTR lpClass;
|
||||
HKEY hkeyClass;
|
||||
DWORD dwHotKey;
|
||||
HANDLE hIcon;
|
||||
HANDLE hProcess;
|
||||
} SHELLEXECUTEINFOW,*LPSHELLEXECUTEINFOW;
|
||||
typedef struct _SHFILEOPSTRUCTA {
|
||||
HWND hwnd;
|
||||
UINT wFunc;
|
||||
LPCSTR pFrom;
|
||||
LPCSTR pTo;
|
||||
FILEOP_FLAGS fFlags;
|
||||
BOOL fAnyOperationsAborted;
|
||||
PVOID hNameMappings;
|
||||
LPCSTR lpszProgressTitle;
|
||||
} SHFILEOPSTRUCTA,*LPSHFILEOPSTRUCTA;
|
||||
typedef struct _SHFILEOPSTRUCTW {
|
||||
HWND hwnd;
|
||||
UINT wFunc;
|
||||
LPCWSTR pFrom;
|
||||
LPCWSTR pTo;
|
||||
FILEOP_FLAGS fFlags;
|
||||
BOOL fAnyOperationsAborted;
|
||||
PVOID hNameMappings;
|
||||
LPCWSTR lpszProgressTitle;
|
||||
} SHFILEOPSTRUCTW,*LPSHFILEOPSTRUCTW;
|
||||
typedef struct _SHFILEINFOA {
|
||||
HICON hIcon;
|
||||
int iIcon;
|
||||
DWORD dwAttributes;
|
||||
CHAR szDisplayName[MAX_PATH];
|
||||
CHAR szTypeName[80];
|
||||
} SHFILEINFOA;
|
||||
typedef struct _SHFILEINFOW {
|
||||
HICON hIcon;
|
||||
int iIcon;
|
||||
DWORD dwAttributes;
|
||||
WCHAR szDisplayName[MAX_PATH];
|
||||
WCHAR szTypeName[80];
|
||||
} SHFILEINFOW;
|
||||
typedef struct _SHQUERYRBINFO {
|
||||
DWORD cbSize;
|
||||
__int64 i64Size;
|
||||
__int64 i64NumItems;
|
||||
} SHQUERYRBINFO, *LPSHQUERYRBINFO;
|
||||
#include <poppack.h>
|
||||
|
||||
LPWSTR * WINAPI CommandLineToArgvW(LPCWSTR,int*);
|
||||
void WINAPI DragAcceptFiles(HWND,BOOL);
|
||||
void WINAPI DragFinish(HDROP);
|
||||
UINT WINAPI DragQueryFileA(HDROP,UINT,LPSTR,UINT);
|
||||
UINT WINAPI DragQueryFileW(HDROP,UINT,LPWSTR,UINT);
|
||||
BOOL WINAPI DragQueryPoint(HDROP,LPPOINT);
|
||||
HICON WINAPI ExtractAssociatedIconA(HINSTANCE,LPSTR,PWORD);
|
||||
HICON WINAPI ExtractAssociatedIconW(HINSTANCE,LPWSTR,PWORD);
|
||||
HICON WINAPI ExtractIconA(HINSTANCE,LPCSTR,UINT);
|
||||
HICON WINAPI ExtractIconW(HINSTANCE,LPCWSTR,UINT);
|
||||
UINT WINAPI ExtractIconExA(LPCSTR,int,HICON*,HICON*,UINT);
|
||||
UINT WINAPI ExtractIconExW(LPCWSTR,int,HICON*,HICON*,UINT);
|
||||
HINSTANCE WINAPI FindExecutableA(LPCSTR,LPCSTR,LPSTR);
|
||||
HINSTANCE WINAPI FindExecutableW(LPCWSTR,LPCWSTR,LPWSTR);
|
||||
UINT WINAPI SHAppBarMessage(DWORD,PAPPBARDATA);
|
||||
BOOL WINAPI Shell_NotifyIconA(DWORD,PNOTIFYICONDATAA);
|
||||
BOOL WINAPI Shell_NotifyIconW(DWORD,PNOTIFYICONDATAW);
|
||||
int WINAPI ShellAboutA(HWND,LPCSTR,LPCSTR,HICON);
|
||||
int WINAPI ShellAboutW(HWND,LPCWSTR,LPCWSTR,HICON);
|
||||
HINSTANCE WINAPI ShellExecuteA(HWND,LPCSTR,LPCSTR,LPCSTR,LPCSTR,INT);
|
||||
HINSTANCE WINAPI ShellExecuteW(HWND,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,INT);
|
||||
BOOL WINAPI ShellExecuteExA(LPSHELLEXECUTEINFOA);
|
||||
BOOL WINAPI ShellExecuteExW(LPSHELLEXECUTEINFOW);
|
||||
int WINAPI SHFileOperationA(LPSHFILEOPSTRUCTA);
|
||||
int WINAPI SHFileOperationW(LPSHFILEOPSTRUCTW);
|
||||
void WINAPI SHFreeNameMappings(HANDLE);
|
||||
DWORD WINAPI SHGetFileInfoA(LPCSTR,DWORD,SHFILEINFOA*,UINT,UINT);
|
||||
DWORD WINAPI SHGetFileInfoW(LPCWSTR,DWORD,SHFILEINFOW*,UINT,UINT);
|
||||
HRESULT WINAPI SHQueryRecycleBinA(LPCSTR, LPSHQUERYRBINFO);
|
||||
HRESULT WINAPI SHQueryRecycleBinW(LPCWSTR, LPSHQUERYRBINFO);
|
||||
HRESULT WINAPI SHEmptyRecycleBinA(HWND,LPCSTR,DWORD);
|
||||
HRESULT WINAPI SHEmptyRecycleBinW(HWND,LPCWSTR,DWORD);
|
||||
|
||||
#ifdef UNICODE
|
||||
typedef NOTIFYICONDATAW NOTIFYICONDATA,*PNOTIFYICONDATA;
|
||||
typedef SHELLEXECUTEINFOW SHELLEXECUTEINFO,*LPSHELLEXECUTEINFO;
|
||||
typedef SHFILEOPSTRUCTW SHFILEOPSTRUCT,*LPSHFILEOPSTRUCT;
|
||||
typedef SHFILEINFOW SHFILEINFO;
|
||||
#define DragQueryFile DragQueryFileW
|
||||
#define ExtractAssociatedIcon ExtractAssociatedIconW
|
||||
#define ExtractIcon ExtractIconW
|
||||
#define ExtractIconEx ExtractIconExW
|
||||
#define FindExecutable FindExecutableW
|
||||
#define Shell_NotifyIcon Shell_NotifyIconW
|
||||
#define ShellAbout ShellAboutW
|
||||
#define ShellExecute ShellExecuteW
|
||||
#define ShellExecuteEx ShellExecuteExW
|
||||
#define SHFileOperation SHFileOperationW
|
||||
#define SHGetFileInfo SHGetFileInfoW
|
||||
#define SHQueryRecycleBin SHQueryRecycleBinW
|
||||
#define SHEmptyRecycleBin SHEmptyRecycleBinW
|
||||
|
||||
#else
|
||||
typedef NOTIFYICONDATAA NOTIFYICONDATA,*PNOTIFYICONDATA;
|
||||
typedef SHELLEXECUTEINFOA SHELLEXECUTEINFO,*LPSHELLEXECUTEINFO;
|
||||
typedef SHFILEOPSTRUCTA SHFILEOPSTRUCT,*LPSHFILEOPSTRUCT;
|
||||
typedef SHFILEINFOA SHFILEINFO;
|
||||
#define DragQueryFile DragQueryFileA
|
||||
#define ExtractAssociatedIcon ExtractAssociatedIconA
|
||||
#define ExtractIcon ExtractIconA
|
||||
#define ExtractIconEx ExtractIconExA
|
||||
#define FindExecutable FindExecutableA
|
||||
#define Shell_NotifyIcon Shell_NotifyIconA
|
||||
#define ShellAbout ShellAboutA
|
||||
#define ShellExecute ShellExecuteA
|
||||
#define ShellExecuteEx ShellExecuteExA
|
||||
#define SHFileOperation SHFileOperationA
|
||||
#define SHGetFileInfo SHGetFileInfoA
|
||||
#define SHQueryRecycleBin SHQueryRecycleBinA
|
||||
#define SHEmptyRecycleBin SHEmptyRecycleBinA
|
||||
#endif
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#define FOF_NOCOPYSECURITYATTRIBS 0x0800
|
||||
|
||||
#define SEE_MASK_NO_CONSOLE 0x00008000
|
||||
#define SEE_MASK_ASYNCOK 0x00100000
|
||||
#define SEE_MASK_HMONITOR 0x00200000
|
||||
|
||||
#define SHGFI_UNKNOWN1 0x000000020
|
||||
#define SHGFI_UNKNOWN2 0x000000040
|
||||
#define SHGFI_UNKNOWN3 0x000000080
|
||||
|
||||
#define ABS_AUTOHIDE 0x00000001
|
||||
#define ABS_ALWAYSONTOP 0x00000002
|
||||
#endif
|
877
reactos/include/wine/shlobj.h
Normal file
|
@ -0,0 +1,877 @@
|
|||
/*
|
||||
* Copyright (C) the Wine project
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_SHLOBJ_H
|
||||
#define __WINE_SHLOBJ_H
|
||||
|
||||
#include <ole2.h>
|
||||
#include <commctrl.h>
|
||||
#include <prsht.h>
|
||||
#include <shlguid.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* defined(__cplusplus) */
|
||||
|
||||
#include <pshpack1.h>
|
||||
|
||||
#include <shtypes.h>
|
||||
#include <shobjidl.h>
|
||||
|
||||
|
||||
BOOL WINAPI SHGetPathFromIDListA (LPCITEMIDLIST pidl,LPSTR pszPath);
|
||||
BOOL WINAPI SHGetPathFromIDListW (LPCITEMIDLIST pidl,LPWSTR pszPath);
|
||||
#define SHGetPathFromIDList WINELIB_NAME_AW(SHGetPathFromIDList)
|
||||
|
||||
/*****************************************************************************
|
||||
* Predeclare interfaces
|
||||
*/
|
||||
typedef struct IShellIcon IShellIcon, *LPSHELLICON;
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
* IContextMenu interface
|
||||
*/
|
||||
|
||||
|
||||
/* DATAOBJECT_InitShellIDList*/
|
||||
#define CFSTR_SHELLIDLIST "Shell IDList Array" /* CF_IDLIST */
|
||||
|
||||
extern UINT cfShellIDList;
|
||||
|
||||
typedef struct
|
||||
{ UINT cidl;
|
||||
UINT aoffset[1];
|
||||
} CIDA, *LPIDA;
|
||||
|
||||
#define CFSTR_SHELLIDLISTOFFSET "Shell Object Offsets" /* CF_OBJECTPOSITIONS */
|
||||
#define CFSTR_NETRESOURCES "Net Resource" /* CF_NETRESOURCE */
|
||||
|
||||
/* DATAOBJECT_InitFileGroupDesc */
|
||||
#define CFSTR_FILEDESCRIPTORA "FileGroupDescriptor" /* CF_FILEGROUPDESCRIPTORA */
|
||||
extern UINT cfFileGroupDesc;
|
||||
|
||||
#define CFSTR_FILEDESCRIPTORW "FileGroupDescriptorW" /* CF_FILEGROUPDESCRIPTORW */
|
||||
|
||||
/* DATAOBJECT_InitFileContents*/
|
||||
#define CFSTR_FILECONTENTS "FileContents" /* CF_FILECONTENTS */
|
||||
extern UINT cfFileContents;
|
||||
|
||||
#define CFSTR_FILENAMEA "FileName" /* CF_FILENAMEA */
|
||||
#define CFSTR_FILENAMEW "FileNameW" /* CF_FILENAMEW */
|
||||
#define CFSTR_PRINTERGROUP "PrinterFriendlyName" /* CF_PRINTERS */
|
||||
#define CFSTR_FILENAMEMAPA "FileNameMap" /* CF_FILENAMEMAPA */
|
||||
#define CFSTR_FILENAMEMAPW "FileNameMapW" /* CF_FILENAMEMAPW */
|
||||
#define CFSTR_SHELLURL "UniformResourceLocator"
|
||||
#define CFSTR_PREFERREDDROPEFFECT "Preferred DropEffect"
|
||||
#define CFSTR_PERFORMEDDROPEFFECT "Performed DropEffect"
|
||||
#define CFSTR_PASTESUCCEEDED "Paste Succeeded"
|
||||
#define CFSTR_INDRAGLOOP "InShellDragLoop"
|
||||
|
||||
#define CFSTR_FILENAME WINELIB_NAME_AW(CFSTR_FILENAME)
|
||||
|
||||
|
||||
/************************************************************************
|
||||
* IShellView interface
|
||||
*/
|
||||
|
||||
typedef GUID SHELLVIEWID;
|
||||
#define SV_CLASS_NAME ("SHELLDLL_DefView")
|
||||
|
||||
#define FCIDM_SHVIEWFIRST 0x0000
|
||||
/* undocumented */
|
||||
#define FCIDM_SHVIEW_ARRANGE 0x7001
|
||||
#define FCIDM_SHVIEW_DELETE 0x7011
|
||||
#define FCIDM_SHVIEW_PROPERTIES 0x7013
|
||||
#define FCIDM_SHVIEW_CUT 0x7018
|
||||
#define FCIDM_SHVIEW_COPY 0x7019
|
||||
#define FCIDM_SHVIEW_INSERT 0x701A
|
||||
#define FCIDM_SHVIEW_UNDO 0x701B
|
||||
#define FCIDM_SHVIEW_INSERTLINK 0x701C
|
||||
#define FCIDM_SHVIEW_SELECTALL 0x7021
|
||||
#define FCIDM_SHVIEW_INVERTSELECTION 0x7022
|
||||
|
||||
#define FCIDM_SHVIEW_BIGICON 0x7029
|
||||
#define FCIDM_SHVIEW_SMALLICON 0x702A
|
||||
#define FCIDM_SHVIEW_LISTVIEW 0x702B
|
||||
#define FCIDM_SHVIEW_REPORTVIEW 0x702C
|
||||
/* 0x7030-0x703f are used by the shellbrowser */
|
||||
#define FCIDM_SHVIEW_AUTOARRANGE 0x7031
|
||||
#define FCIDM_SHVIEW_SNAPTOGRID 0x7032
|
||||
|
||||
#define FCIDM_SHVIEW_HELP 0x7041
|
||||
#define FCIDM_SHVIEW_RENAME 0x7050
|
||||
#define FCIDM_SHVIEW_CREATELINK 0x7051
|
||||
#define FCIDM_SHVIEW_NEWLINK 0x7052
|
||||
#define FCIDM_SHVIEW_NEWFOLDER 0x7053
|
||||
|
||||
#define FCIDM_SHVIEW_REFRESH 0x7100 /* FIXME */
|
||||
#define FCIDM_SHVIEW_EXPLORE 0x7101 /* FIXME */
|
||||
#define FCIDM_SHVIEW_OPEN 0x7102 /* FIXME */
|
||||
|
||||
#define FCIDM_SHVIEWLAST 0x7fff
|
||||
#define FCIDM_BROWSERFIRST 0xA000
|
||||
/* undocumented toolbar items from stddlg's*/
|
||||
#define FCIDM_TB_UPFOLDER 0xA001
|
||||
#define FCIDM_TB_NEWFOLDER 0xA002
|
||||
#define FCIDM_TB_SMALLICON 0xA003
|
||||
#define FCIDM_TB_REPORTVIEW 0xA004
|
||||
#define FCIDM_TB_DESKTOP 0xA005 /* FIXME */
|
||||
|
||||
#define FCIDM_BROWSERLAST 0xbf00
|
||||
#define FCIDM_GLOBALFIRST 0x8000
|
||||
#define FCIDM_GLOBALLAST 0x9fff
|
||||
|
||||
/*
|
||||
* Global submenu IDs and separator IDs
|
||||
*/
|
||||
#define FCIDM_MENU_FILE (FCIDM_GLOBALFIRST+0x0000)
|
||||
#define FCIDM_MENU_EDIT (FCIDM_GLOBALFIRST+0x0040)
|
||||
#define FCIDM_MENU_VIEW (FCIDM_GLOBALFIRST+0x0080)
|
||||
#define FCIDM_MENU_VIEW_SEP_OPTIONS (FCIDM_GLOBALFIRST+0x0081)
|
||||
#define FCIDM_MENU_TOOLS (FCIDM_GLOBALFIRST+0x00c0)
|
||||
#define FCIDM_MENU_TOOLS_SEP_GOTO (FCIDM_GLOBALFIRST+0x00c1)
|
||||
#define FCIDM_MENU_HELP (FCIDM_GLOBALFIRST+0x0100)
|
||||
#define FCIDM_MENU_FIND (FCIDM_GLOBALFIRST+0x0140)
|
||||
#define FCIDM_MENU_EXPLORE (FCIDM_GLOBALFIRST+0x0150)
|
||||
#define FCIDM_MENU_FAVORITES (FCIDM_GLOBALFIRST+0x0170)
|
||||
|
||||
/* control IDs known to the view */
|
||||
#define FCIDM_TOOLBAR (FCIDM_BROWSERFIRST + 0)
|
||||
#define FCIDM_STATUS (FCIDM_BROWSERFIRST + 1)
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
* IShellIcon interface
|
||||
*/
|
||||
|
||||
#define INTERFACE IShellIcon
|
||||
#define IShellIcon_METHODS \
|
||||
IUnknown_METHODS \
|
||||
STDMETHOD(GetIconOf)(THIS_ LPCITEMIDLIST pidl, UINT flags, LPINT lpIconIndex) PURE;
|
||||
ICOM_DEFINE(IShellIcon, IUnknown)
|
||||
#undef INTERFACE
|
||||
|
||||
#ifdef COBJMACROS
|
||||
/*** IUnknown methods ***/
|
||||
#define IShellIcon_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IShellIcon_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IShellIcon_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IShellIcon methods ***/
|
||||
#define IShellIcon_GetIconOf(p,a,b,c) (p)->lpVtbl->GetIconOf(p,a,b,c)
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* SHAddToRecentDocs API
|
||||
*/
|
||||
#define SHARD_PIDL 0x00000001L
|
||||
#define SHARD_PATHA 0x00000002L
|
||||
#define SHARD_PATHW 0x00000003L
|
||||
#define SHARD_PATH WINELIB_NAME_AW(SHARD_PATH)
|
||||
|
||||
DWORD WINAPI SHAddToRecentDocs(UINT uFlags, LPCVOID pv);
|
||||
|
||||
/****************************************************************************
|
||||
* SHBrowseForFolder API
|
||||
*/
|
||||
typedef INT (CALLBACK *BFFCALLBACK)(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData);
|
||||
|
||||
typedef struct tagBROWSEINFOA {
|
||||
HWND hwndOwner;
|
||||
LPCITEMIDLIST pidlRoot;
|
||||
LPSTR pszDisplayName;
|
||||
LPCSTR lpszTitle;
|
||||
UINT ulFlags;
|
||||
BFFCALLBACK lpfn;
|
||||
LPARAM lParam;
|
||||
INT iImage;
|
||||
} BROWSEINFOA, *PBROWSEINFOA, *LPBROWSEINFOA;
|
||||
|
||||
typedef struct tagBROWSEINFOW {
|
||||
HWND hwndOwner;
|
||||
LPCITEMIDLIST pidlRoot;
|
||||
LPWSTR pszDisplayName;
|
||||
LPCWSTR lpszTitle;
|
||||
UINT ulFlags;
|
||||
BFFCALLBACK lpfn;
|
||||
LPARAM lParam;
|
||||
INT iImage;
|
||||
} BROWSEINFOW, *PBROWSEINFOW, *LPBROWSEINFOW;
|
||||
|
||||
#define BROWSEINFO WINELIB_NAME_AW(BROWSEINFO)
|
||||
#define PBROWSEINFO WINELIB_NAME_AW(PBROWSEINFO)
|
||||
#define LPBROWSEINFO WINELIB_NAME_AW(LPBROWSEINFO)
|
||||
|
||||
/* Browsing for directory. */
|
||||
#define BIF_RETURNONLYFSDIRS 0x0001
|
||||
#define BIF_DONTGOBELOWDOMAIN 0x0002
|
||||
#define BIF_STATUSTEXT 0x0004
|
||||
#define BIF_RETURNFSANCESTORS 0x0008
|
||||
#define BIF_EDITBOX 0x0010
|
||||
#define BIF_VALIDATE 0x0020
|
||||
#define BIF_NEWDIALOGSTYLE 0x0040
|
||||
|
||||
#define BIF_BROWSEFORCOMPUTER 0x1000
|
||||
#define BIF_BROWSEFORPRINTER 0x2000
|
||||
#define BIF_BROWSEINCLUDEFILES 0x4000
|
||||
|
||||
/* message from browser */
|
||||
#define BFFM_INITIALIZED 1
|
||||
#define BFFM_SELCHANGED 2
|
||||
#define BFFM_VALIDATEFAILEDA 3 /* lParam:szPath ret:1(cont),0(EndDialog) */
|
||||
#define BFFM_VALIDATEFAILEDW 4 /* lParam:wzPath ret:1(cont),0(EndDialog) */
|
||||
|
||||
/* messages to browser */
|
||||
#define BFFM_SETSTATUSTEXTA (WM_USER+100)
|
||||
#define BFFM_ENABLEOK (WM_USER+101)
|
||||
#define BFFM_SETSELECTIONA (WM_USER+102)
|
||||
#define BFFM_SETSELECTIONW (WM_USER+103)
|
||||
#define BFFM_SETSTATUSTEXTW (WM_USER+104)
|
||||
#define BFFM_SETOKTEXT (WM_USER+105)
|
||||
#define BFFM_SETEXPANDED (WM_USER+106)
|
||||
|
||||
LPITEMIDLIST WINAPI SHBrowseForFolderA(LPBROWSEINFOA lpbi);
|
||||
LPITEMIDLIST WINAPI SHBrowseForFolderW(LPBROWSEINFOW lpbi);
|
||||
#define SHBrowseForFolder WINELIB_NAME_AW(SHBrowseForFolder)
|
||||
#define BFFM_SETSTATUSTEXT WINELIB_NAME_AW(BFFM_SETSTATUSTEXT)
|
||||
#define BFFM_SETSELECTION WINELIB_NAME_AW(BFFM_SETSELECTION)
|
||||
#define BFFM_VALIDATEFAILED WINELIB_NAME_AW(BFFM_VALIDATEFAILED)
|
||||
|
||||
/****************************************************************************
|
||||
* SHGetDataFromIDList API
|
||||
*/
|
||||
#define SHGDFIL_FINDDATA 1
|
||||
#define SHGDFIL_NETRESOURCE 2
|
||||
#define SHGDFIL_DESCRIPTIONID 3
|
||||
|
||||
#define SHDID_ROOT_REGITEM 1
|
||||
#define SHDID_FS_FILE 2
|
||||
#define SHDID_FS_DIRECTORY 3
|
||||
#define SHDID_FS_OTHER 4
|
||||
#define SHDID_COMPUTER_DRIVE35 5
|
||||
#define SHDID_COMPUTER_DRIVE525 6
|
||||
#define SHDID_COMPUTER_REMOVABLE 7
|
||||
#define SHDID_COMPUTER_FIXED 8
|
||||
#define SHDID_COMPUTER_NETDRIVE 9
|
||||
#define SHDID_COMPUTER_CDROM 10
|
||||
#define SHDID_COMPUTER_RAMDISK 11
|
||||
#define SHDID_COMPUTER_OTHER 12
|
||||
#define SHDID_NET_DOMAIN 13
|
||||
#define SHDID_NET_SERVER 14
|
||||
#define SHDID_NET_SHARE 15
|
||||
#define SHDID_NET_RESTOFNET 16
|
||||
#define SHDID_NET_OTHER 17
|
||||
#define SHDID_COMPUTER_IMAGING 18
|
||||
#define SHDID_COMPUTER_AUDIO 19
|
||||
#define SHDID_COMPUTER_SHAREDDOCS 20
|
||||
|
||||
typedef struct _SHDESCRIPTIONID
|
||||
{ DWORD dwDescriptionId;
|
||||
CLSID clsid;
|
||||
} SHDESCRIPTIONID, *LPSHDESCRIPTIONID;
|
||||
|
||||
HRESULT WINAPI SHGetDataFromIDListA(LPSHELLFOLDER psf, LPCITEMIDLIST pidl, int nFormat, LPVOID pv, int cb);
|
||||
HRESULT WINAPI SHGetDataFromIDListW(LPSHELLFOLDER psf, LPCITEMIDLIST pidl, int nFormat, LPVOID pv, int cb);
|
||||
#define SHGetDataFromIDList WINELIB_NAME_AW(SHGetDataFromIDList)
|
||||
|
||||
BOOL WINAPI SHGetSpecialFolderPathA (HWND hwndOwner, LPSTR szPath, int nFolder, BOOL bCreate);
|
||||
BOOL WINAPI SHGetSpecialFolderPathW (HWND hwndOwner, LPWSTR szPath, int nFolder, BOOL bCreate);
|
||||
#define SHGetSpecialFolderPath WINELIB_NAME_AW(SHGetSpecialFolderPath)
|
||||
|
||||
/****************************************************************************
|
||||
* shlview structures
|
||||
*/
|
||||
|
||||
/*
|
||||
* IShellFolderViewCallback Callback
|
||||
* This "callback" is called by the shells default IShellView implementation (that
|
||||
* we got using SHCreateShellViewEx()), to notify us of the various things that
|
||||
* are happening to the shellview (and ask for things too).
|
||||
*
|
||||
* You don't have to support anything here - anything you don't want to
|
||||
* handle, the shell will do itself if you just return E_NOTIMPL. This parameters
|
||||
* that the shell passes to this function are entirely undocumented.
|
||||
*
|
||||
* HOWEVER, as the cabview sample as originally written used this callback, the
|
||||
* writers implemented the callback mechanism on top of their own IShellView.
|
||||
* Look there for some clues on what to do here.
|
||||
*/
|
||||
|
||||
typedef HRESULT (CALLBACK *SHELLVIEWPROC)(DWORD dwUserParam,LPSHELLFOLDER psf,
|
||||
HWND hwnd,UINT uMsg,UINT wParam,LPARAM lParam);
|
||||
|
||||
/* NF valid values for the "viewmode" item of the SHELLTEMPLATE*/
|
||||
#define NF_INHERITVIEW 0x0000
|
||||
#define NF_LOCALVIEW 0x0001
|
||||
|
||||
typedef struct _SHELLVIEWDATA /* idl */
|
||||
{ DWORD dwSize;
|
||||
LPSHELLFOLDER pShellFolder;
|
||||
DWORD dwUserParam;
|
||||
LPCITEMIDLIST pidl;
|
||||
DWORD v3; /* always 0 */
|
||||
SHELLVIEWPROC pCallBack;
|
||||
DWORD viewmode; /* NF_* enum */
|
||||
} SHELLVIEWDATA, * LPSHELLVIEWDATA;
|
||||
|
||||
HRESULT WINAPI SHGetMalloc(LPMALLOC *lpmal) ;
|
||||
|
||||
/**********************************************************************
|
||||
* SHGetSetSettings ()
|
||||
*/
|
||||
|
||||
typedef struct
|
||||
{
|
||||
BOOL fShowAllObjects : 1;
|
||||
BOOL fShowExtensions : 1;
|
||||
BOOL fNoConfirmRecycle : 1;
|
||||
|
||||
BOOL fShowSysFiles : 1;
|
||||
BOOL fShowCompColor : 1;
|
||||
BOOL fDoubleClickInWebView : 1;
|
||||
BOOL fDesktopHTML : 1;
|
||||
BOOL fWin95Classic : 1;
|
||||
BOOL fDontPrettyPath : 1;
|
||||
BOOL fShowAttribCol : 1;
|
||||
BOOL fMapNetDrvBtn : 1;
|
||||
BOOL fShowInfoTip : 1;
|
||||
BOOL fHideIcons : 1;
|
||||
BOOL fWebView : 1;
|
||||
BOOL fFilter : 1;
|
||||
BOOL fShowSuperHidden : 1;
|
||||
BOOL fNoNetCrawling : 1;
|
||||
|
||||
DWORD dwWin95Unused;
|
||||
UINT uWin95Unused;
|
||||
LONG lParamSort;
|
||||
int iSortDirection;
|
||||
UINT version;
|
||||
UINT uNotUsed;
|
||||
BOOL fSepProcess: 1;
|
||||
BOOL fStartPanelOn: 1;
|
||||
BOOL fShowStartPage: 1;
|
||||
UINT fSpareFlags : 13;
|
||||
} SHELLSTATE, *LPSHELLSTATE;
|
||||
|
||||
/**********************************************************************
|
||||
* SHGetSettings ()
|
||||
*/
|
||||
typedef struct
|
||||
{ BOOL fShowAllObjects : 1;
|
||||
BOOL fShowExtensions : 1;
|
||||
BOOL fNoConfirmRecycle : 1;
|
||||
BOOL fShowSysFiles : 1;
|
||||
|
||||
BOOL fShowCompColor : 1;
|
||||
BOOL fDoubleClickInWebView : 1;
|
||||
BOOL fDesktopHTML : 1;
|
||||
BOOL fWin95Classic : 1;
|
||||
|
||||
BOOL fDontPrettyPath : 1;
|
||||
BOOL fShowAttribCol : 1;
|
||||
BOOL fMapNetDrvBtn : 1;
|
||||
BOOL fShowInfoTip : 1;
|
||||
|
||||
BOOL fHideIcons : 1;
|
||||
UINT fRestFlags : 3;
|
||||
} SHELLFLAGSTATE, * LPSHELLFLAGSTATE;
|
||||
|
||||
VOID WINAPI SHGetSettings(LPSHELLFLAGSTATE lpsfs, DWORD dwMask);
|
||||
|
||||
#define SSF_SHOWALLOBJECTS 0x0001
|
||||
#define SSF_SHOWEXTENSIONS 0x0002
|
||||
#define SSF_SHOWCOMPCOLOR 0x0008
|
||||
#define SSF_SHOWSYSFILES 0x0020
|
||||
#define SSF_DOUBLECLICKINWEBVIEW 0x0080
|
||||
#define SSF_SHOWATTRIBCOL 0x0100
|
||||
#define SSF_DESKTOPHTML 0x0200
|
||||
#define SSF_WIN95CLASSIC 0x0400
|
||||
#define SSF_DONTPRETTYPATH 0x0800
|
||||
#define SSF_SHOWINFOTIP 0x2000
|
||||
#define SSF_MAPNETDRVBUTTON 0x1000
|
||||
#define SSF_NOCONFIRMRECYCLE 0x8000
|
||||
#define SSF_HIDEICONS 0x4000
|
||||
|
||||
/****************************************************************************
|
||||
* SHRestricted API
|
||||
*/
|
||||
typedef enum RESTRICTIONS
|
||||
{
|
||||
REST_NONE = 0x00000000,
|
||||
REST_NORUN = 0x00000001,
|
||||
REST_NOCLOSE = 0x00000002,
|
||||
REST_NOSAVESET = 0x00000004,
|
||||
REST_NOFILEMENU = 0x00000008,
|
||||
REST_NOSETFOLDERS = 0x00000010,
|
||||
REST_NOSETTASKBAR = 0x00000020,
|
||||
REST_NODESKTOP = 0x00000040,
|
||||
REST_NOFIND = 0x00000080,
|
||||
REST_NODRIVES = 0x00000100,
|
||||
REST_NODRIVEAUTORUN = 0x00000200,
|
||||
REST_NODRIVETYPEAUTORUN = 0x00000400,
|
||||
REST_NONETHOOD = 0x00000800,
|
||||
REST_STARTBANNER = 0x00001000,
|
||||
REST_RESTRICTRUN = 0x00002000,
|
||||
REST_NOPRINTERTABS = 0x00004000,
|
||||
REST_NOPRINTERDELETE = 0x00008000,
|
||||
REST_NOPRINTERADD = 0x00010000,
|
||||
REST_NOSTARTMENUSUBFOLDERS = 0x00020000,
|
||||
REST_MYDOCSONNET = 0x00040000,
|
||||
REST_NOEXITTODOS = 0x00080000,
|
||||
REST_ENFORCESHELLEXTSECURITY = 0x00100000,
|
||||
REST_LINKRESOLVEIGNORELINKINFO = 0x00200000,
|
||||
REST_NOCOMMONGROUPS = 0x00400000,
|
||||
REST_SEPARATEDESKTOPPROCESS = 0x00800000,
|
||||
REST_NOWEB = 0x01000000,
|
||||
REST_NOTRAYCONTEXTMENU = 0x02000000,
|
||||
REST_NOVIEWCONTEXTMENU = 0x04000000,
|
||||
REST_NONETCONNECTDISCONNECT = 0x08000000,
|
||||
REST_STARTMENULOGOFF = 0x10000000,
|
||||
REST_NOSETTINGSASSIST = 0x20000000,
|
||||
REST_NOINTERNETICON = 0x40000001,
|
||||
REST_NORECENTDOCSHISTORY,
|
||||
REST_NORECENTDOCSMENU,
|
||||
REST_NOACTIVEDESKTOP,
|
||||
REST_NOACTIVEDESKTOPCHANGES,
|
||||
REST_NOFAVORITESMENU,
|
||||
REST_CLEARRECENTDOCSONEXIT,
|
||||
REST_CLASSICSHELL,
|
||||
REST_NOCUSTOMIZEWEBVIEW,
|
||||
|
||||
REST_NOHTMLWALLPAPER = 0x40000010,
|
||||
REST_NOCHANGINGWALLPAPER,
|
||||
REST_NODESKCOMP,
|
||||
REST_NOADDDESKCOMP,
|
||||
REST_NODELDESKCOMP,
|
||||
REST_NOCLOSEDESKCOMP,
|
||||
REST_NOCLOSE_DRAGDROPBAND,
|
||||
REST_NOMOVINGBAND,
|
||||
REST_NOEDITDESKCOMP,
|
||||
REST_NORESOLVESEARCH,
|
||||
REST_NORESOLVETRACK,
|
||||
REST_FORCECOPYACLWITHFILE,
|
||||
REST_NOLOGO3CHANNELNOTIFY,
|
||||
REST_NOFORGETSOFTWAREUPDATE,
|
||||
REST_NOSETACTIVEDESKTOP,
|
||||
REST_NOUPDATEWINDOWS,
|
||||
REST_NOCHANGESTARMENU, /* 0x40000020 */
|
||||
REST_NOFOLDEROPTIONS,
|
||||
REST_HASFINDCOMPUTERS,
|
||||
REST_INTELLIMENUS,
|
||||
REST_RUNDLGMEMCHECKBOX,
|
||||
REST_ARP_ShowPostSetup,
|
||||
REST_NOCSC,
|
||||
REST_NOCONTROLPANEL,
|
||||
REST_ENUMWORKGROUP,
|
||||
REST_ARP_NOARP,
|
||||
REST_ARP_NOREMOVEPAGE,
|
||||
REST_ARP_NOADDPAGE,
|
||||
REST_ARP_NOWINSETUPPAGE,
|
||||
REST_GREYMSIADS,
|
||||
REST_NOCHANGEMAPPEDDRIVELABEL,
|
||||
REST_NOCHANGEMAPPEDDRIVECOMMENT,
|
||||
REST_MaxRecentDocs, /* 0x40000030 */
|
||||
REST_NONETWORKCONNECTIONS,
|
||||
REST_FORCESTARTMENULOGOFF,
|
||||
REST_NOWEBVIEW,
|
||||
REST_NOCUSTOMIZETHISFOLDER,
|
||||
REST_NOENCRYPTION,
|
||||
|
||||
REST_ALLOWFRENCHENCRYPTION, /* not documented */
|
||||
|
||||
REST_DONTSHOWSUPERHIDDEN,
|
||||
REST_NOSHELLSEARCHBUTTON,
|
||||
REST_NOHARDWARETAB,
|
||||
REST_NORUNASINSTALLPROMPT,
|
||||
REST_PROMPTRUNASINSTALLNETPATH,
|
||||
REST_NOMANAGEMYCOMPUTERVERB,
|
||||
REST_NORECENTDOCSNETHOOD,
|
||||
REST_DISALLOWRUN,
|
||||
REST_NOWELCOMESCREEN,
|
||||
REST_RESTRICTCPL, /* 0x40000040 */
|
||||
REST_DISALLOWCPL,
|
||||
REST_NOSMBALLOONTIP,
|
||||
REST_NOSMHELP,
|
||||
REST_NOWINKEYS,
|
||||
REST_NOENCRYPTONMOVE,
|
||||
REST_NOLOCALMACHINERUN,
|
||||
REST_NOCURRENTUSERRUN,
|
||||
REST_NOLOCALMACHINERUNONCE,
|
||||
REST_NOCURRENTUSERRUNONCE,
|
||||
REST_FORCEACTIVEDESKTOPON,
|
||||
REST_NOCOMPUTERSNEARME,
|
||||
REST_NOVIEWONDRIVE,
|
||||
REST_NONETCRAWL,
|
||||
REST_NOSHAREDDOCUMENTS,
|
||||
REST_NOSMMYDOCS,
|
||||
REST_NOSMMYPICS, /* 0x40000050 */
|
||||
REST_ALLOWBITBUCKDRIVES,
|
||||
REST_NONLEGACYSHELLMODE,
|
||||
REST_NOCONTROLPANELBARRICADE,
|
||||
REST_NOSTARTPAGE,
|
||||
REST_NOAUTOTRAYNOTIFY,
|
||||
REST_NOTASKGROUPING,
|
||||
REST_NOCDBURNING,
|
||||
REST_MYCOMPNOPROP,
|
||||
REST_MYDOCSNOPROP,
|
||||
REST_NOSTARTPANEL,
|
||||
REST_NODISPLAYAPPEARANCEPAGE,
|
||||
REST_NOTHEMESTAB,
|
||||
REST_NOVISUALSTYLECHOICE,
|
||||
REST_NOSIZECHOICE,
|
||||
REST_NOCOLORCHOICE,
|
||||
REST_SETVISUALSTYLE, /* 0x40000060 */
|
||||
REST_STARTRUNNOHOMEPATH,
|
||||
REST_NOUSERNAMEINSTARTPANEL,
|
||||
REST_NOMYCOMPUTERICON,
|
||||
REST_NOSMNETWORKPLACES,
|
||||
REST_NOSMPINNEDLIST,
|
||||
REST_NOSMMYMUSIC,
|
||||
REST_NOSMEJECTPC,
|
||||
REST_NOSMMOREPROGRAMS,
|
||||
REST_NOSMMFUPROGRAMS,
|
||||
REST_NOTRAYITEMSDISPLAY,
|
||||
REST_NOTOOLBARSONTASKBAR,
|
||||
/* 0x4000006C
|
||||
0x4000006D
|
||||
0x4000006E */
|
||||
REST_NOSMCONFIGUREPROGRAMS = 0x4000006F,
|
||||
REST_HIDECLOCK, /* 0x40000070 */
|
||||
REST_NOLOWDISKSPACECHECKS,
|
||||
REST_NOENTIRENETWORK,
|
||||
REST_NODESKTOPCLEANUP,
|
||||
REST_BITBUCKNUKEONDELETE,
|
||||
REST_BITBUCKCONFIRMDELETE,
|
||||
REST_BITBUCKNOPROP,
|
||||
REST_NODISPBACKGROUND,
|
||||
REST_NODISPSCREENSAVEPG,
|
||||
REST_NODISPSETTINGSPG,
|
||||
REST_NODISPSCREENSAVEPREVIEW,
|
||||
REST_NODISPLAYCPL,
|
||||
REST_HIDERUNASVERB,
|
||||
REST_NOTHUMBNAILCACHE,
|
||||
REST_NOSTRCMPLOGICAL,
|
||||
REST_NOPUBLISHWIZARD,
|
||||
REST_NOONLINEPRINTSWIZARD, /* 0x40000080 */
|
||||
REST_NOWEBSERVICES,
|
||||
REST_ALLOWUNHASHEDWEBVIEW,
|
||||
REST_ALLOWLEGACYWEBVIEW,
|
||||
REST_REVERTWEBVIEWSECURITY,
|
||||
|
||||
REST_INHERITCONSOLEHANDLES = 0x40000086,
|
||||
|
||||
REST_NODISCONNECT = 0x41000001,
|
||||
REST_NOSECURITY,
|
||||
REST_NOFILEASSOCIATE, /* 0x41000003 */
|
||||
} RESTRICTIONS;
|
||||
|
||||
DWORD WINAPI SHRestricted(RESTRICTIONS rest);
|
||||
|
||||
/****************************************************************************
|
||||
* SHChangeNotify API
|
||||
*/
|
||||
typedef struct _SHChangeNotifyEntry
|
||||
{
|
||||
LPCITEMIDLIST pidl;
|
||||
BOOL fRecursive;
|
||||
} SHChangeNotifyEntry;
|
||||
|
||||
#define SHCNE_RENAMEITEM 0x00000001
|
||||
#define SHCNE_CREATE 0x00000002
|
||||
#define SHCNE_DELETE 0x00000004
|
||||
#define SHCNE_MKDIR 0x00000008
|
||||
#define SHCNE_RMDIR 0x00000010
|
||||
#define SHCNE_MEDIAINSERTED 0x00000020
|
||||
#define SHCNE_MEDIAREMOVED 0x00000040
|
||||
#define SHCNE_DRIVEREMOVED 0x00000080
|
||||
#define SHCNE_DRIVEADD 0x00000100
|
||||
#define SHCNE_NETSHARE 0x00000200
|
||||
#define SHCNE_NETUNSHARE 0x00000400
|
||||
#define SHCNE_ATTRIBUTES 0x00000800
|
||||
#define SHCNE_UPDATEDIR 0x00001000
|
||||
#define SHCNE_UPDATEITEM 0x00002000
|
||||
#define SHCNE_SERVERDISCONNECT 0x00004000
|
||||
#define SHCNE_UPDATEIMAGE 0x00008000
|
||||
#define SHCNE_DRIVEADDGUI 0x00010000
|
||||
#define SHCNE_RENAMEFOLDER 0x00020000
|
||||
#define SHCNE_FREESPACE 0x00040000
|
||||
|
||||
#define SHCNE_EXTENDED_EVENT 0x04000000
|
||||
#define SHCNE_ASSOCCHANGED 0x08000000
|
||||
#define SHCNE_DISKEVENTS 0x0002381F
|
||||
#define SHCNE_GLOBALEVENTS 0x0C0581E0
|
||||
#define SHCNE_ALLEVENTS 0x7FFFFFFF
|
||||
#define SHCNE_INTERRUPT 0x80000000
|
||||
|
||||
#define SHCNEE_ORDERCHANGED 0x0002L
|
||||
#define SHCNEE_MSI_CHANGE 0x0004L
|
||||
#define SHCNEE_MSI_UNINSTALL 0x0005L
|
||||
|
||||
#define SHCNF_IDLIST 0x0000
|
||||
#define SHCNF_PATHA 0x0001
|
||||
#define SHCNF_PRINTERA 0x0002
|
||||
#define SHCNF_DWORD 0x0003
|
||||
#define SHCNF_PATHW 0x0005
|
||||
#define SHCNF_PRINTERW 0x0006
|
||||
#define SHCNF_TYPE 0x00FF
|
||||
#define SHCNF_FLUSH 0x1000
|
||||
#define SHCNF_FLUSHNOWAIT 0x2000
|
||||
|
||||
#define SHCNF_PATH WINELIB_NAME_AW(SHCNF_PATH)
|
||||
#define SHCNF_PRINTER WINELIB_NAME_AW(SHCNF_PRINTER)
|
||||
|
||||
void WINAPI SHChangeNotify(LONG wEventId, UINT uFlags, LPCVOID dwItem1, LPCVOID dwItem2);
|
||||
|
||||
/*
|
||||
* IShellChangeNotify
|
||||
*/
|
||||
typedef struct IShellChangeNotify IShellChangeNotify, *LPSHELLCHANGENOTIFY;
|
||||
|
||||
#define INTERFACE IShellChangeNotify
|
||||
#define IShellChangeNotify_METHODS \
|
||||
IUnknown_METHODS \
|
||||
STDMETHOD(OnChange)(THIS_ LONG lEvent, LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2) PURE;
|
||||
|
||||
ICOM_DEFINE(IShellChangeNotify, IUnknown)
|
||||
#undef INTERFACE
|
||||
|
||||
#ifdef COBJMACROS
|
||||
/*** IUnknown methods ***/
|
||||
#define IShellChangeNotify_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IShellChangeNotify_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IShellChangeNotify_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IShellChangeNotify methods ***/
|
||||
#define IShellChangeNotify_OnChange(p,a,b,c) (p)->lpVtbl->OnChange(p,a,b,c)
|
||||
#endif
|
||||
|
||||
typedef struct _SHChangeDWORDAsIDList {
|
||||
USHORT cb;
|
||||
DWORD dwItem1;
|
||||
DWORD dwItem2;
|
||||
USHORT cbZero;
|
||||
} SHChangeDWORDAsIDList, *LPSHChangeDWORDAsIDList;
|
||||
|
||||
typedef struct _SHChangeProductKeyAsIDList {
|
||||
USHORT cb;
|
||||
WCHAR wszProductKey[39];
|
||||
USHORT cbZero;
|
||||
} SHChangeProductKeyAsIDList, *LPSHChangeProductKeyAsIDList;
|
||||
|
||||
ULONG WINAPI SHChangeNotifyRegister(HWND hwnd, int fSources, LONG fEvents, UINT wMsg,
|
||||
int cEntries, SHChangeNotifyEntry *pshcne);
|
||||
BOOL WINAPI SHChangeNotifyDeregister(ULONG ulID);
|
||||
HANDLE WINAPI SHChangeNotification_Lock(HANDLE hChangeNotification, DWORD dwProcessId,
|
||||
LPITEMIDLIST **pppidl, LONG *plEvent);
|
||||
BOOL WINAPI SHChangeNotification_Unlock(HANDLE hLock);
|
||||
|
||||
HRESULT WINAPI SHGetRealIDL(IShellFolder *psf, LPCITEMIDLIST pidlSimple, LPITEMIDLIST * ppidlReal);
|
||||
|
||||
/****************************************************************************
|
||||
* SHCreateDirectory API
|
||||
*/
|
||||
DWORD WINAPI SHCreateDirectory(HWND, LPCVOID);
|
||||
DWORD WINAPI SHCreateDirectoryExA(HWND, LPCSTR, LPSECURITY_ATTRIBUTES);
|
||||
DWORD WINAPI SHCreateDirectoryExW(HWND, LPCWSTR, LPSECURITY_ATTRIBUTES);
|
||||
|
||||
/****************************************************************************
|
||||
* SHGetSpecialFolderLocation API
|
||||
*/
|
||||
HRESULT WINAPI SHGetSpecialFolderLocation(HWND hwndOwner, int nFolder, LPITEMIDLIST * ppidl);
|
||||
HRESULT WINAPI SHGetFolderLocation(HWND hwndOwner, int nFolder, HANDLE hToken, DWORD dwReserved, LPITEMIDLIST *ppidl);
|
||||
|
||||
#define CSIDL_DESKTOP 0x0000
|
||||
#define CSIDL_INTERNET 0x0001
|
||||
#define CSIDL_PROGRAMS 0x0002
|
||||
#define CSIDL_CONTROLS 0x0003
|
||||
#define CSIDL_PRINTERS 0x0004
|
||||
#define CSIDL_PERSONAL 0x0005
|
||||
#define CSIDL_FAVORITES 0x0006
|
||||
#define CSIDL_STARTUP 0x0007
|
||||
#define CSIDL_RECENT 0x0008
|
||||
#define CSIDL_SENDTO 0x0009
|
||||
#define CSIDL_BITBUCKET 0x000a
|
||||
#define CSIDL_STARTMENU 0x000b
|
||||
#define CSIDL_MYDOCUMENTS 0x000c
|
||||
#define CSIDL_MYMUSIC 0x000d
|
||||
#define CSIDL_MYVIDEO 0x000e
|
||||
#define CSIDL_DESKTOPDIRECTORY 0x0010
|
||||
#define CSIDL_DRIVES 0x0011
|
||||
#define CSIDL_NETWORK 0x0012
|
||||
#define CSIDL_NETHOOD 0x0013
|
||||
#define CSIDL_FONTS 0x0014
|
||||
#define CSIDL_TEMPLATES 0x0015
|
||||
#define CSIDL_COMMON_STARTMENU 0x0016
|
||||
#define CSIDL_COMMON_PROGRAMS 0X0017
|
||||
#define CSIDL_COMMON_STARTUP 0x0018
|
||||
#define CSIDL_COMMON_DESKTOPDIRECTORY 0x0019
|
||||
#define CSIDL_APPDATA 0x001a
|
||||
#define CSIDL_PRINTHOOD 0x001b
|
||||
#define CSIDL_LOCAL_APPDATA 0x001c
|
||||
#define CSIDL_ALTSTARTUP 0x001d
|
||||
#define CSIDL_COMMON_ALTSTARTUP 0x001e
|
||||
#define CSIDL_COMMON_FAVORITES 0x001f
|
||||
#define CSIDL_INTERNET_CACHE 0x0020
|
||||
#define CSIDL_COOKIES 0x0021
|
||||
#define CSIDL_HISTORY 0x0022
|
||||
#define CSIDL_COMMON_APPDATA 0x0023
|
||||
#define CSIDL_WINDOWS 0x0024
|
||||
#define CSIDL_SYSTEM 0x0025
|
||||
#define CSIDL_PROGRAM_FILES 0x0026
|
||||
#define CSIDL_MYPICTURES 0x0027
|
||||
#define CSIDL_PROFILE 0x0028
|
||||
#define CSIDL_SYSTEMX86 0x0029
|
||||
#define CSIDL_PROGRAM_FILESX86 0x002a
|
||||
#define CSIDL_PROGRAM_FILES_COMMON 0x002b
|
||||
#define CSIDL_PROGRAM_FILES_COMMONX86 0x002c
|
||||
#define CSIDL_COMMON_TEMPLATES 0x002d
|
||||
#define CSIDL_COMMON_DOCUMENTS 0x002e
|
||||
#define CSIDL_COMMON_ADMINTOOLS 0x002f
|
||||
#define CSIDL_ADMINTOOLS 0x0030
|
||||
#define CSIDL_CONNECTIONS 0x0031
|
||||
#define CSIDL_COMMON_MUSIC 0x0035
|
||||
#define CSIDL_COMMON_PICTURES 0x0036
|
||||
#define CSIDL_COMMON_VIDEO 0x0037
|
||||
#define CSIDL_RESOURCES 0x0038
|
||||
#define CSIDL_RESOURCES_LOCALIZED 0x0039
|
||||
#define CSIDL_COMMON_OEM_LINKS 0x003a
|
||||
#define CSIDL_CDBURN_AREA 0x003b
|
||||
#define CSIDL_COMPUTERSNEARME 0x003d
|
||||
#define CSIDL_PROFILES 0x003e
|
||||
#define CSIDL_FOLDER_MASK 0x00ff
|
||||
#define CSIDL_FLAG_PER_USER_INIT 0x0800
|
||||
#define CSIDL_FLAG_NO_ALIAS 0x1000
|
||||
#define CSIDL_FLAG_DONT_VERIFY 0x4000
|
||||
#define CSIDL_FLAG_CREATE 0x8000
|
||||
|
||||
#define CSIDL_FLAG_MASK 0xff00
|
||||
|
||||
/****************************************************************************
|
||||
* SHGetDesktopFolder API
|
||||
*/
|
||||
DWORD WINAPI SHGetDesktopFolder(IShellFolder * *);
|
||||
|
||||
/****************************************************************************
|
||||
* SHBindToParent API
|
||||
*/
|
||||
HRESULT WINAPI SHBindToParent(LPCITEMIDLIST pidl, REFIID riid, LPVOID *ppv, LPCITEMIDLIST *ppidlLast);
|
||||
|
||||
/****************************************************************************
|
||||
* SHDefExtractIcon API
|
||||
*/
|
||||
HRESULT WINAPI SHDefExtractIconA(LPCSTR pszIconFile, int iIndex, UINT uFlags,
|
||||
HICON* phiconLarge, HICON* phiconSmall, UINT nIconSize);
|
||||
HRESULT WINAPI SHDefExtractIconW(LPCWSTR pszIconFile, int iIndex, UINT uFlags,
|
||||
HICON* phiconLarge, HICON* phiconSmall, UINT nIconSize);
|
||||
#define SHDefExtractIcon WINELIB_NAME_AW(SHDefExtractIcon)
|
||||
|
||||
/*
|
||||
* DROPFILES for CF_HDROP and CF_PRINTERS
|
||||
*/
|
||||
typedef struct _DROPFILES
|
||||
{
|
||||
DWORD pFiles;
|
||||
POINT pt;
|
||||
BOOL fNC;
|
||||
BOOL fWide;
|
||||
} DROPFILES, *LPDROPFILES;
|
||||
|
||||
#include <poppack.h>
|
||||
|
||||
/*****************************************************************************
|
||||
* IFileSystemBindData interface
|
||||
*/
|
||||
#ifndef __IFileSystemBindData_FWD_DEFINED__
|
||||
#define __IFileSystemBindData_FWD_DEFINED__
|
||||
typedef struct IFileSystemBindData IFileSystemBindData;
|
||||
#endif
|
||||
|
||||
typedef IFileSystemBindData *LPFILESYSTEMBINDDATA;
|
||||
|
||||
#ifndef __IFileSystemBindData_INTERFACE_DEFINED__
|
||||
#define __IFileSystemBindData_INTERFACE_DEFINED__
|
||||
|
||||
DEFINE_GUID(IID_IFileSystemBindData, 0x01e18d10, 0x4d8b, 0x11d2, 0x85,0x5d, 0x00,0x60,0x08,0x05,0x93,0x67);
|
||||
#if defined(__cplusplus) && !defined(CINTERFACE)
|
||||
struct IFileSystemBindData : public IUnknown
|
||||
{
|
||||
virtual HRESULT STDMETHODCALLTYPE GetFindData(
|
||||
WIN32_FIND_DATAW* pfd) = 0;
|
||||
|
||||
virtual HRESULT STDMETHODCALLTYPE SetFindData(
|
||||
const WIN32_FIND_DATAW* pfd) = 0;
|
||||
|
||||
};
|
||||
#else
|
||||
typedef struct IFileSystemBindDataVtbl IFileSystemBindDataVtbl;
|
||||
struct IFileSystemBindData {
|
||||
const IFileSystemBindDataVtbl* lpVtbl;
|
||||
};
|
||||
struct IFileSystemBindDataVtbl {
|
||||
ICOM_MSVTABLE_COMPAT_FIELDS
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *QueryInterface)(
|
||||
IFileSystemBindData* This,
|
||||
REFIID riid,
|
||||
void** ppvObject);
|
||||
|
||||
ULONG (STDMETHODCALLTYPE *AddRef)(
|
||||
IFileSystemBindData* This);
|
||||
|
||||
ULONG (STDMETHODCALLTYPE *Release)(
|
||||
IFileSystemBindData* This);
|
||||
|
||||
/*** IFileSystemBindData methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *GetFindData)(
|
||||
IFileSystemBindData* This,
|
||||
WIN32_FIND_DATAW* pfd);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *SetFindData)(
|
||||
IFileSystemBindData* This,
|
||||
const WIN32_FIND_DATAW* pfd);
|
||||
|
||||
};
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IFileSystemBindData_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IFileSystemBindData_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IFileSystemBindData_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IFileSystemBindData methods ***/
|
||||
#define IFileSystemBindData_GetFindData(p,a) (p)->lpVtbl->GetFindData(p,a)
|
||||
#define IFileSystemBindData_SetFindData(p,a) (p)->lpVtbl->SetFindData(p,a)
|
||||
|
||||
#endif
|
||||
|
||||
#define IFileSystemBindData_METHODS \
|
||||
ICOM_MSVTABLE_COMPAT_FIELDS \
|
||||
/*** IUnknown methods ***/ \
|
||||
STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE; \
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE; \
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE; \
|
||||
/*** IFileSystemBindData methods ***/ \
|
||||
STDMETHOD_(HRESULT,GetFindData)(THIS_ WIN32_FIND_DATAW* pfd) PURE; \
|
||||
STDMETHOD_(HRESULT,SetFindData)(THIS_ const WIN32_FIND_DATAW* pfd) PURE;
|
||||
|
||||
#endif /* __IFileSystemBindData_INTERFACE_DEFINED__ */
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif /* defined(__cplusplus) */
|
||||
|
||||
#endif /* __WINE_SHLOBJ_H */
|
810
reactos/include/wine/shlwapi.h
Normal file
|
@ -0,0 +1,810 @@
|
|||
#ifndef __WINE_SHLWAPI_H
|
||||
#define __WINE_SHLWAPI_H
|
||||
|
||||
#define WINSHLWAPI
|
||||
|
||||
/* First part: w32api shlwapi.h.
|
||||
SHRegQueryInfoUSKeyA and SHRegQueryInfoUSKeyW miss the last parameter in w32api */
|
||||
|
||||
#if __GNUC__ >=3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef __OBJC__
|
||||
#include <objbase.h>
|
||||
#include <shlobj.h>
|
||||
#endif
|
||||
|
||||
#ifndef WINSHLWAPI
|
||||
#define WINSHLWAPI DECLSPEC_IMPORT
|
||||
#endif
|
||||
|
||||
#define DLLVER_PLATFORM_WINDOWS 0x00000001
|
||||
#define DLLVER_PLATFORM_NT 0x00000002
|
||||
|
||||
#define URL_DONT_ESCAPE_EXTRA_INFO 0x02000000
|
||||
#define URL_DONT_SIMPLIFY 0x08000000
|
||||
#define URL_ESCAPE_PERCENT 0x00001000
|
||||
#define URL_ESCAPE_SEGMENT_ONLY 0x00002000
|
||||
#define URL_ESCAPE_SPACES_ONLY 0x04000000
|
||||
#define URL_ESCAPE_UNSAFE 0x20000000
|
||||
#define URL_INTERNAL_PATH 0x00800000
|
||||
#define URL_PARTFLAG_KEEPSCHEME 0x00000001
|
||||
#define URL_PLUGGABLE_PROTOCOL 0x40000000
|
||||
#define URL_UNESCAPE 0x10000000
|
||||
#define URL_UNESCAPE_HIGH_ANSI_ONLY 0x00400000
|
||||
#define URL_UNESCAPE_INPLACE 0x00100000
|
||||
|
||||
#ifndef RC_INVOKED
|
||||
#include <pshpack1.h>
|
||||
typedef struct _DllVersionInfo
|
||||
{
|
||||
DWORD cbSize;
|
||||
DWORD dwMajorVersion;
|
||||
DWORD dwMinorVersion;
|
||||
DWORD dwBuildNumber;
|
||||
DWORD dwPlatformID;
|
||||
} DLLVERSIONINFO;
|
||||
typedef struct _DLLVERSIONINFO2
|
||||
{
|
||||
DLLVERSIONINFO info1;
|
||||
DWORD dwFlags;
|
||||
ULONGLONG ullVersion;
|
||||
} DLLVERSIONINFO2;
|
||||
#include <poppack.h>
|
||||
|
||||
#define MAKEDLLVERULL(major, minor, build, qfe) \
|
||||
(((ULONGLONG)(major) << 48) | \
|
||||
((ULONGLONG)(minor) << 32) | \
|
||||
((ULONGLONG)(build) << 16) | \
|
||||
((ULONGLONG)( qfe) << 0))
|
||||
|
||||
typedef enum {
|
||||
ASSOCSTR_COMMAND,
|
||||
ASSOCSTR_EXECUTABLE,
|
||||
ASSOCSTR_FRIENDLYDOCNAME,
|
||||
ASSOCSTR_FRIENDLYAPPNAME,
|
||||
ASSOCSTR_NOOPEN,
|
||||
ASSOCSTR_SHELLNEWVALUE,
|
||||
ASSOCSTR_DDECOMMAND,
|
||||
ASSOCSTR_DDEIFEXEC,
|
||||
ASSOCSTR_DDEAPPLICATION,
|
||||
ASSOCSTR_DDETOPIC
|
||||
} ASSOCSTR;
|
||||
typedef enum
|
||||
{
|
||||
ASSOCKEY_SHELLEXECCLASS = 1,
|
||||
ASSOCKEY_APP,
|
||||
ASSOCKEY_CLASS,
|
||||
ASSOCKEY_BASECLASS
|
||||
} ASSOCKEY;
|
||||
typedef enum
|
||||
{
|
||||
ASSOCDATA_MSIDESCRIPTOR = 1,
|
||||
ASSOCDATA_NOACTIVATEHANDLER,
|
||||
ASSOCDATA_QUERYCLASSSTORE
|
||||
} ASSOCDATA;
|
||||
typedef DWORD ASSOCF;
|
||||
typedef enum
|
||||
{
|
||||
SHREGDEL_DEFAULT = 0x00000000,
|
||||
SHREGDEL_HKCU = 0x00000001,
|
||||
SHREGDEL_HKLM = 0x00000010,
|
||||
SHREGDEL_BOTH = 0x00000011
|
||||
} SHREGDEL_FLAGS;
|
||||
typedef enum
|
||||
{
|
||||
SHREGENUM_DEFAULT = 0x00000000,
|
||||
SHREGENUM_HKCU = 0x00000001,
|
||||
SHREGENUM_HKLM = 0x00000010,
|
||||
SHREGENUM_BOTH = 0x00000011
|
||||
} SHREGENUM_FLAGS;
|
||||
typedef enum
|
||||
{
|
||||
URLIS_URL,
|
||||
URLIS_OPAQUE,
|
||||
URLIS_NOHISTORY,
|
||||
URLIS_FILEURL,
|
||||
URLIS_APPLIABLE,
|
||||
URLIS_DIRECTORY,
|
||||
URLIS_HASQUERY
|
||||
} URLIS;
|
||||
|
||||
typedef HANDLE HUSKEY, *PHUSKEY;
|
||||
|
||||
typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
|
||||
|
||||
WINSHLWAPI BOOL WINAPI ChrCmpIA(WORD,WORD);
|
||||
WINSHLWAPI BOOL WINAPI ChrCmpIW(WCHAR,WCHAR);
|
||||
#define IntlStrEqNA(pStr1, pStr2, nChar) IntlStrEqWorkerA(TRUE, pStr1, pStr2, nChar);
|
||||
#define IntlStrEqNW(pStr1, pStr2, nChar) IntlStrEqWorkerW(TRUE, pStr1, pStr2, nChar);
|
||||
#define IntlStrEqNIA(pStr1, pStr2, nChar) IntlStrEqWorkerA(FALSE, pStr1, pStr2, nChar);
|
||||
#define IntlStrEqNIW(pStr1, pStr2, nChar) IntlStrEqWorkerW(FALSE, pStr1, pStr2, nChar);
|
||||
WINSHLWAPI BOOL WINAPI IntlStrEqWorkerA(BOOL,LPCSTR,LPCSTR,int);
|
||||
WINSHLWAPI BOOL WINAPI IntlStrEqWorkerW(BOOL,LPCWSTR,LPCWSTR,int);
|
||||
WINSHLWAPI HRESULT WINAPI SHStrDupA(LPCSTR,LPWSTR*);
|
||||
WINSHLWAPI HRESULT WINAPI SHStrDupW(LPCWSTR,LPWSTR*);
|
||||
WINSHLWAPI LPSTR WINAPI StrCatA(LPSTR,LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI StrCatW(LPWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI StrCatBuffA(LPSTR,LPCSTR,int);
|
||||
WINSHLWAPI LPWSTR WINAPI StrCatBuffW(LPWSTR,LPCWSTR,int);
|
||||
WINSHLWAPI DWORD WINAPI StrCatChainW(LPWSTR,DWORD,DWORD,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI StrChrA(LPCSTR,WORD);
|
||||
WINSHLWAPI LPWSTR WINAPI StrChrW(LPCWSTR,WCHAR);
|
||||
WINSHLWAPI LPSTR WINAPI StrChrIA(LPCSTR,WORD);
|
||||
WINSHLWAPI LPWSTR WINAPI StrChrIW(LPCWSTR,WCHAR);
|
||||
#define StrCmpIA lstrcmpiA
|
||||
#define StrCmpA lstrcmpA
|
||||
#define StrCpyA lstrcpyA
|
||||
#define StrCpyNA lstrcpynA
|
||||
WINSHLWAPI int WINAPI StrCmpIW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI int WINAPI StrCmpW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI StrCpyW(LPWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI StrCpyNW(LPWSTR,LPCWSTR,int);
|
||||
WINSHLWAPI int WINAPI StrCmpNA(LPCSTR,LPCSTR,int);
|
||||
WINSHLWAPI int WINAPI StrCmpNW(LPCWSTR,LPCWSTR,int);
|
||||
WINSHLWAPI int WINAPI StrCmpNIA(LPCSTR,LPCSTR,int);
|
||||
WINSHLWAPI int WINAPI StrCmpNIW(LPCWSTR,LPCWSTR,int);
|
||||
WINSHLWAPI int WINAPI StrCSpnA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI int WINAPI StrCSpnW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI int WINAPI StrCSpnIA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI int WINAPI StrCSpnIW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI StrDupA(LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI StrDupW(LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI StrFormatByteSize64A(LONGLONG,LPSTR,UINT);
|
||||
WINSHLWAPI LPSTR WINAPI StrFormatByteSizeA(DWORD,LPSTR,UINT);
|
||||
WINSHLWAPI LPWSTR WINAPI StrFormatByteSizeW(LONGLONG,LPWSTR,UINT);
|
||||
WINSHLWAPI LPSTR WINAPI StrFormatKBSizeA(LONGLONG,LPSTR,UINT);
|
||||
WINSHLWAPI LPWSTR WINAPI StrFormatKBSizeW(LONGLONG,LPWSTR,UINT);
|
||||
WINSHLWAPI int WINAPI StrFromTimeIntervalA(LPSTR,UINT,DWORD,int);
|
||||
WINSHLWAPI int WINAPI StrFromTimeIntervalW(LPWSTR,UINT,DWORD,int);
|
||||
WINSHLWAPI BOOL WINAPI StrIsIntlEqualA(BOOL,LPCSTR,LPCSTR,int);
|
||||
WINSHLWAPI BOOL WINAPI StrIsIntlEqualW(BOOL,LPCWSTR,LPCWSTR,int);
|
||||
WINSHLWAPI LPSTR WINAPI StrNCatA(LPSTR,LPCSTR,int);
|
||||
WINSHLWAPI LPWSTR WINAPI StrNCatW(LPWSTR,LPCWSTR,int);
|
||||
WINSHLWAPI LPSTR WINAPI StrPBrkA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI StrPBrkW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI StrRChrA(LPCSTR,LPCSTR,WORD);
|
||||
WINSHLWAPI LPWSTR WINAPI StrRChrW(LPCWSTR,LPCWSTR,WCHAR);
|
||||
WINSHLWAPI LPSTR WINAPI StrRChrIA(LPCSTR,LPCSTR,WORD);
|
||||
WINSHLWAPI LPWSTR WINAPI StrRChrIW(LPCWSTR,LPCWSTR,WCHAR);
|
||||
#ifndef __OBJC__
|
||||
WINSHLWAPI HRESULT WINAPI StrRetToBufA(LPSTRRET,LPCITEMIDLIST,LPSTR,UINT);
|
||||
WINSHLWAPI HRESULT WINAPI StrRetToBufW(LPSTRRET,LPCITEMIDLIST,LPWSTR,UINT);
|
||||
WINSHLWAPI HRESULT WINAPI StrRetToStrA(LPSTRRET,LPCITEMIDLIST,LPSTR*);
|
||||
WINSHLWAPI HRESULT WINAPI StrRetToStrW(LPSTRRET,LPCITEMIDLIST,LPWSTR*);
|
||||
#endif
|
||||
WINSHLWAPI LPSTR WINAPI StrRStrIA(LPCSTR,LPCSTR,LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI StrRStrIW(LPCWSTR,LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI int WINAPI StrSpnA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI int WINAPI StrSpnW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI StrStrA(LPCSTR, LPCSTR);
|
||||
WINSHLWAPI LPSTR WINAPI StrStrIA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI StrStrIW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI StrStrW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI int WINAPI StrToIntA(LPCSTR);
|
||||
WINSHLWAPI int WINAPI StrToIntW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI StrToIntExA(LPCSTR,DWORD,int*);
|
||||
WINSHLWAPI BOOL WINAPI StrToIntExW(LPCWSTR,DWORD,int*);
|
||||
WINSHLWAPI BOOL WINAPI StrTrimA(LPSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI StrTrimW(LPWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI PathAddBackslashA(LPSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI PathAddBackslashW(LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathAddExtensionA(LPSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathAddExtensionW(LPWSTR,LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathAppendA(LPSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathAppendW(LPWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI PathBuildRootA(LPSTR,int);
|
||||
WINSHLWAPI LPWSTR WINAPI PathBuildRootW(LPWSTR,int);
|
||||
WINSHLWAPI BOOL WINAPI PathCanonicalizeA(LPSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathCanonicalizeW(LPWSTR,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI PathCombineA(LPSTR,LPCSTR,LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI PathCombineW(LPWSTR,LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI int WINAPI PathCommonPrefixA(LPCSTR,LPCSTR,LPSTR);
|
||||
WINSHLWAPI int WINAPI PathCommonPrefixW(LPCWSTR,LPCWSTR,LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathCompactPathA(HDC,LPSTR,UINT);
|
||||
WINSHLWAPI BOOL WINAPI PathCompactPathW(HDC,LPWSTR,UINT);
|
||||
WINSHLWAPI BOOL WINAPI PathCompactPathExA(LPSTR,LPCSTR,UINT,DWORD);
|
||||
WINSHLWAPI BOOL WINAPI PathCompactPathExW(LPWSTR,LPCWSTR,UINT,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI PathCreateFromUrlA(LPCSTR,LPSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI PathCreateFromUrlW(LPCWSTR,LPWSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI BOOL WINAPI PathFileExistsA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathFileExistsW(LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI PathFindExtensionA(LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI PathFindExtensionW(LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI PathFindFileNameA(LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI PathFindFileNameW(LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI PathFindNextComponentA(LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI PathFindNextComponentW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathFindOnPathA(LPSTR,LPCSTR*);
|
||||
WINSHLWAPI BOOL WINAPI PathFindOnPathW(LPWSTR,LPCWSTR*);
|
||||
WINSHLWAPI LPCSTR WINAPI PathFindSuffixArrayA(LPCSTR,LPCSTR*,int);
|
||||
WINSHLWAPI LPCWSTR WINAPI PathFindSuffixArrayW(LPCWSTR,LPCWSTR*,int);
|
||||
WINSHLWAPI LPSTR WINAPI PathGetArgsA(LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI PathGetArgsW(LPCWSTR);
|
||||
WINSHLWAPI UINT WINAPI PathGetCharTypeA(UCHAR);
|
||||
WINSHLWAPI UINT WINAPI PathGetCharTypeW(WCHAR);
|
||||
WINSHLWAPI int WINAPI PathGetDriveNumberA(LPCSTR);
|
||||
WINSHLWAPI int WINAPI PathGetDriveNumberW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsContentTypeA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsContentTypeW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsDirectoryA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsDirectoryEmptyA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsDirectoryEmptyW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsDirectoryW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsFileSpecA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsFileSpecW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsLFNFileSpecA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsLFNFileSpecW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsNetworkPathA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsNetworkPathW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsPrefixA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsPrefixW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsRelativeA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsRelativeW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsRootA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsRootW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsSameRootA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsSameRootW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsSystemFolderA(LPCSTR,DWORD);
|
||||
WINSHLWAPI BOOL WINAPI PathIsSystemFolderW(LPCWSTR,DWORD);
|
||||
WINSHLWAPI BOOL WINAPI PathIsUNCA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsUNCServerA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsUNCServerShareA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsUNCServerShareW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsUNCServerW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsUNCW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsURLA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathIsURLW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathMakePrettyA(LPSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathMakePrettyW(LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathMakeSystemFolderA(LPSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathMakeSystemFolderW(LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathMatchSpecA(LPCSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathMatchSpecW(LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI int WINAPI PathParseIconLocationA(LPSTR);
|
||||
WINSHLWAPI int WINAPI PathParseIconLocationW(LPWSTR);
|
||||
WINSHLWAPI void WINAPI PathQuoteSpacesA(LPSTR);
|
||||
WINSHLWAPI void WINAPI PathQuoteSpacesW(LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathRelativePathToA(LPSTR,LPCSTR,DWORD,LPCSTR,DWORD);
|
||||
WINSHLWAPI BOOL WINAPI PathRelativePathToW(LPWSTR,LPCWSTR,DWORD,LPCWSTR,DWORD);
|
||||
WINSHLWAPI void WINAPI PathRemoveArgsA(LPSTR);
|
||||
WINSHLWAPI void WINAPI PathRemoveArgsW(LPWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI PathRemoveBackslashA(LPSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI PathRemoveBackslashW(LPWSTR);
|
||||
WINSHLWAPI void WINAPI PathRemoveBlanksA(LPSTR);
|
||||
WINSHLWAPI void WINAPI PathRemoveBlanksW(LPWSTR);
|
||||
WINSHLWAPI void WINAPI PathRemoveExtensionA(LPSTR);
|
||||
WINSHLWAPI void WINAPI PathRemoveExtensionW(LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathRemoveFileSpecA(LPSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathRemoveFileSpecW(LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathRenameExtensionA(LPSTR,LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathRenameExtensionW(LPWSTR,LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathSearchAndQualifyA(LPCSTR,LPSTR,UINT);
|
||||
WINSHLWAPI BOOL WINAPI PathSearchAndQualifyW(LPCWSTR,LPWSTR,UINT);
|
||||
WINSHLWAPI void WINAPI PathSetDlgItemPathA(HWND,int,LPCSTR);
|
||||
WINSHLWAPI void WINAPI PathSetDlgItemPathW(HWND,int,LPCWSTR);
|
||||
WINSHLWAPI LPSTR WINAPI PathSkipRootA(LPCSTR);
|
||||
WINSHLWAPI LPWSTR WINAPI PathSkipRootW(LPCWSTR);
|
||||
WINSHLWAPI void WINAPI PathStripPathA(LPSTR);
|
||||
WINSHLWAPI void WINAPI PathStripPathW(LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathStripToRootA(LPSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathStripToRootW(LPWSTR);
|
||||
WINSHLWAPI void WINAPI PathUndecorateA(LPSTR);
|
||||
WINSHLWAPI void WINAPI PathUndecorateW(LPWSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathUnExpandEnvStringsA(LPCSTR,LPSTR,UINT);
|
||||
WINSHLWAPI BOOL WINAPI PathUnExpandEnvStringsW(LPCWSTR,LPWSTR,UINT);
|
||||
WINSHLWAPI BOOL WINAPI PathUnmakeSystemFolderA(LPSTR);
|
||||
WINSHLWAPI BOOL WINAPI PathUnmakeSystemFolderW(LPWSTR);
|
||||
WINSHLWAPI void WINAPI PathUnquoteSpacesA(LPSTR);
|
||||
WINSHLWAPI void WINAPI PathUnquoteSpacesW(LPWSTR);
|
||||
WINSHLWAPI HRESULT WINAPI SHAutoComplete(HWND,DWORD);
|
||||
#ifndef __OBJC__
|
||||
WINSHLWAPI HRESULT WINAPI SHCreateStreamOnFileA(LPCSTR,DWORD,struct IStream**);
|
||||
WINSHLWAPI HRESULT WINAPI SHCreateStreamOnFileW(LPCWSTR,DWORD,struct IStream**);
|
||||
WINSHLWAPI struct IStream* WINAPI SHOpenRegStream2A(HKEY,LPCSTR,LPCSTR,DWORD);
|
||||
WINSHLWAPI struct IStream* WINAPI SHOpenRegStream2W(HKEY,LPCWSTR,LPCWSTR,DWORD);
|
||||
WINSHLWAPI struct IStream* WINAPI SHOpenRegStreamA(HKEY,LPCSTR,LPCSTR,DWORD);
|
||||
WINSHLWAPI struct IStream* WINAPI SHOpenRegStreamW(HKEY,LPCWSTR,LPCWSTR,DWORD);
|
||||
#endif
|
||||
WINSHLWAPI BOOL WINAPI SHCreateThread(LPTHREAD_START_ROUTINE,void*,DWORD,LPTHREAD_START_ROUTINE);
|
||||
WINSHLWAPI DWORD WINAPI SHCopyKeyA(HKEY,LPCSTR,HKEY,DWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHCopyKeyW(HKEY,LPCWSTR,HKEY,DWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHDeleteEmptyKeyA(HKEY,LPCSTR);
|
||||
WINSHLWAPI DWORD WINAPI SHDeleteEmptyKeyW(HKEY,LPCWSTR);
|
||||
WINSHLWAPI DWORD WINAPI SHDeleteKeyA(HKEY,LPCSTR);
|
||||
WINSHLWAPI DWORD WINAPI SHDeleteKeyW(HKEY,LPCWSTR);
|
||||
WINSHLWAPI DWORD WINAPI SHEnumKeyExA(HKEY,DWORD,LPSTR,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHEnumKeyExW(HKEY,DWORD,LPWSTR,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHQueryInfoKeyA(HKEY,LPDWORD,LPDWORD,LPDWORD,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHQueryInfoKeyW(HKEY,LPDWORD,LPDWORD,LPDWORD,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHQueryValueExA(HKEY,LPCSTR,LPDWORD,LPDWORD,LPVOID,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHQueryValueExW(HKEY,LPCWSTR,LPDWORD,LPDWORD,LPVOID,LPDWORD);
|
||||
#ifndef __OBJC__
|
||||
WINSHLWAPI HRESULT WINAPI SHGetThreadRef(IUnknown**);
|
||||
WINSHLWAPI HRESULT WINAPI SHSetThreadRef(IUnknown*);
|
||||
WINSHLWAPI BOOL WINAPI SHSkipJunction(IBindCtx*,const CLSID*);
|
||||
#endif
|
||||
WINSHLWAPI DWORD WINAPI SHEnumValueA(HKEY,DWORD,LPSTR,LPDWORD,LPDWORD,LPVOID,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHEnumValueW(HKEY,DWORD,LPWSTR,LPDWORD,LPDWORD,LPVOID,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHGetValueA(HKEY,LPCSTR,LPCSTR,LPDWORD,LPVOID,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHGetValueW(HKEY,LPCWSTR,LPCWSTR,LPDWORD,LPVOID,LPDWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHSetValueA(HKEY,LPCSTR,LPCSTR,DWORD,LPCVOID,DWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHSetValueW(HKEY,LPCWSTR,LPCWSTR,DWORD,LPCVOID,DWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHDeleteValueA(HKEY,LPCSTR,LPCSTR);
|
||||
WINSHLWAPI DWORD WINAPI SHDeleteValueW(HKEY,LPCWSTR,LPCWSTR);
|
||||
WINSHLWAPI HRESULT WINAPI AssocCreate(CLSID,const IID* const,LPVOID*);
|
||||
WINSHLWAPI HRESULT WINAPI AssocQueryKeyA(ASSOCF,ASSOCKEY,LPCSTR,LPCSTR,HKEY*);
|
||||
WINSHLWAPI HRESULT WINAPI AssocQueryKeyW(ASSOCF,ASSOCKEY,LPCWSTR,LPCWSTR,HKEY*);
|
||||
WINSHLWAPI HRESULT WINAPI AssocQueryStringA(ASSOCF,ASSOCSTR,LPCSTR,LPCSTR,LPSTR,DWORD*);
|
||||
WINSHLWAPI HRESULT WINAPI AssocQueryStringByKeyA(ASSOCF,ASSOCSTR,HKEY,LPCSTR,LPSTR,DWORD*);
|
||||
WINSHLWAPI HRESULT WINAPI AssocQueryStringByKeyW(ASSOCF,ASSOCSTR,HKEY,LPCWSTR,LPWSTR,DWORD*);
|
||||
WINSHLWAPI HRESULT WINAPI AssocQueryStringW(ASSOCF,ASSOCSTR,LPCWSTR,LPCWSTR,LPWSTR,DWORD*);
|
||||
|
||||
WINSHLWAPI HRESULT WINAPI UrlApplySchemeA(LPCSTR,LPSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlApplySchemeW(LPCWSTR,LPWSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlCanonicalizeA(LPCSTR,LPSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlCanonicalizeW(LPCWSTR,LPWSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlCombineA(LPCSTR,LPCSTR,LPSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlCombineW(LPCWSTR,LPCWSTR,LPWSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI int WINAPI UrlCompareA(LPCSTR,LPCSTR,BOOL);
|
||||
WINSHLWAPI int WINAPI UrlCompareW(LPCWSTR,LPCWSTR,BOOL);
|
||||
WINSHLWAPI HRESULT WINAPI UrlCreateFromPathA(LPCSTR,LPSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlCreateFromPathW(LPCWSTR,LPWSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlEscapeA(LPCSTR,LPSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlEscapeW(LPCWSTR,LPWSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI LPCSTR WINAPI UrlGetLocationA(LPCSTR);
|
||||
WINSHLWAPI LPCWSTR WINAPI UrlGetLocationW(LPCWSTR);
|
||||
WINSHLWAPI HRESULT WINAPI UrlGetPartA(LPCSTR,LPSTR,LPDWORD,DWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlGetPartW(LPCWSTR,LPWSTR,LPDWORD,DWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlHashA(LPCSTR,LPBYTE,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlHashW(LPCWSTR,LPBYTE,DWORD);
|
||||
WINSHLWAPI BOOL WINAPI UrlIsA(LPCSTR,URLIS);
|
||||
WINSHLWAPI BOOL WINAPI UrlIsW(LPCWSTR,URLIS);
|
||||
#define UrlIsFileUrlA(pszURL) UrlIsA(pzURL, URLIS_FILEURL)
|
||||
#define UrlIsFileUrlW(pszURL) UrlIsW(pszURL, URLIS_FILEURL)
|
||||
WINSHLWAPI BOOL WINAPI UrlIsNoHistoryA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI UrlIsNoHistoryW(LPCWSTR);
|
||||
WINSHLWAPI BOOL WINAPI UrlIsOpaqueA(LPCSTR);
|
||||
WINSHLWAPI BOOL WINAPI UrlIsOpaqueW(LPCWSTR);
|
||||
WINSHLWAPI HRESULT WINAPI UrlUnescapeA(LPSTR,LPSTR,LPDWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI UrlUnescapeW(LPWSTR,LPWSTR,LPDWORD,DWORD);
|
||||
#define UrlUnescapeInPlaceA(pszUrl,dwFlags )\
|
||||
UrlUnescapeA(pszUrl, NULL, NULL, dwFlags | URL_UNESCAPE_INPLACE)
|
||||
#define UrlUnescapeInPlaceW(pszUrl,dwFlags )\
|
||||
UrlUnescapeW(pszUrl, NULL, NULL, dwFlags | URL_UNESCAPE_INPLACE)
|
||||
WINSHLWAPI DWORD WINAPI SHRegCloseUSKey(HUSKEY);
|
||||
WINSHLWAPI LONG WINAPI SHRegCreateUSKeyA(LPCSTR,REGSAM,HUSKEY,PHUSKEY,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegCreateUSKeyW(LPCWSTR,REGSAM,HUSKEY,PHUSKEY,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegDeleteEmptyUSKeyA(HUSKEY,LPCSTR,SHREGDEL_FLAGS);
|
||||
WINSHLWAPI LONG WINAPI SHRegDeleteEmptyUSKeyW(HUSKEY,LPCWSTR,SHREGDEL_FLAGS);
|
||||
WINSHLWAPI LONG WINAPI SHRegDeleteUSValueA(HUSKEY,LPCSTR,SHREGDEL_FLAGS);
|
||||
WINSHLWAPI LONG WINAPI SHRegDeleteUSValueW(HUSKEY,LPCWSTR,SHREGDEL_FLAGS);
|
||||
WINSHLWAPI HKEY WINAPI SHRegDuplicateHKey(HKEY);
|
||||
WINSHLWAPI DWORD WINAPI SHRegEnumUSKeyA(HUSKEY,DWORD,LPSTR,LPDWORD,SHREGENUM_FLAGS);
|
||||
WINSHLWAPI DWORD WINAPI SHRegEnumUSKeyW(HUSKEY,DWORD,LPWSTR,LPDWORD,SHREGENUM_FLAGS);
|
||||
WINSHLWAPI DWORD WINAPI SHRegEnumUSValueA(HUSKEY,DWORD,LPSTR,LPDWORD,LPDWORD,LPVOID,LPDWORD,SHREGENUM_FLAGS);
|
||||
WINSHLWAPI DWORD WINAPI SHRegEnumUSValueW(HUSKEY,DWORD,LPWSTR,LPDWORD,LPDWORD,LPVOID,LPDWORD,SHREGENUM_FLAGS);
|
||||
WINSHLWAPI BOOL WINAPI SHRegGetBoolUSValueA(LPCSTR,LPCSTR,BOOL,BOOL);
|
||||
WINSHLWAPI BOOL WINAPI SHRegGetBoolUSValueW(LPCWSTR,LPCWSTR,BOOL,BOOL);
|
||||
WINSHLWAPI DWORD WINAPI SHRegGetPathA(HKEY,LPCSTR,LPCSTR,LPSTR,DWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHRegGetPathW(HKEY,LPCWSTR,LPCWSTR,LPWSTR,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegGetUSValueA(LPCSTR,LPCSTR,LPDWORD,LPVOID,LPDWORD,BOOL,LPVOID,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegGetUSValueW(LPCWSTR,LPCWSTR,LPDWORD,LPVOID,LPDWORD,BOOL,LPVOID,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegOpenUSKeyA(LPCSTR,REGSAM,HUSKEY,PHUSKEY,BOOL);
|
||||
WINSHLWAPI LONG WINAPI SHRegOpenUSKeyW(LPCWSTR,REGSAM,HUSKEY,PHUSKEY,BOOL);
|
||||
WINSHLWAPI DWORD WINAPI SHRegQueryInfoUSKeyA(HUSKEY,LPDWORD,LPDWORD,LPDWORD,LPDWORD,SHREGENUM_FLAGS);
|
||||
WINSHLWAPI DWORD WINAPI SHRegQueryInfoUSKeyW(HUSKEY,LPDWORD,LPDWORD,LPDWORD,LPDWORD,SHREGENUM_FLAGS);
|
||||
WINSHLWAPI LONG WINAPI SHRegQueryUSValueA(HUSKEY,LPCSTR,LPDWORD,LPVOID,LPDWORD,BOOL,LPVOID,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegQueryUSValueW(HUSKEY,LPCWSTR,LPDWORD,LPVOID,LPDWORD,BOOL,LPVOID,DWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHRegSetPathA(HKEY,LPCSTR,LPCSTR,LPCSTR,DWORD);
|
||||
WINSHLWAPI DWORD WINAPI SHRegSetPathW(HKEY,LPCWSTR,LPCWSTR,LPCWSTR,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegSetUSValueA(LPCSTR,LPCSTR,DWORD,LPVOID,DWORD,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegSetUSValueW(LPCWSTR,LPCWSTR,DWORD,LPVOID,DWORD,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegWriteUSValueA(HUSKEY,LPCSTR,DWORD,LPVOID,DWORD,DWORD);
|
||||
WINSHLWAPI LONG WINAPI SHRegWriteUSValueW(HUSKEY,LPCWSTR,DWORD,LPVOID,DWORD,DWORD);
|
||||
WINSHLWAPI HRESULT WINAPI HashData(LPBYTE,DWORD,LPBYTE,DWORD);
|
||||
WINSHLWAPI HPALETTE WINAPI SHCreateShellPalette(HDC);
|
||||
WINSHLWAPI COLORREF WINAPI ColorHLSToRGB(WORD,WORD,WORD);
|
||||
WINSHLWAPI COLORREF WINAPI ColorAdjustLuma(COLORREF,int,BOOL);
|
||||
WINSHLWAPI void WINAPI ColorRGBToHLS(COLORREF,WORD*,WORD*,WORD*);
|
||||
WINSHLWAPI int __cdecl wnsprintfA(LPSTR,int,LPCSTR,...);
|
||||
WINSHLWAPI int __cdecl wnsprintfW(LPWSTR,int,LPCWSTR,...);
|
||||
WINSHLWAPI int WINAPI wvnsprintfA(LPSTR,int,LPCSTR,va_list);
|
||||
WINSHLWAPI int WINAPI wvnsprintfW(LPWSTR,int,LPCWSTR,va_list);
|
||||
|
||||
HINSTANCE WINAPI MLLoadLibraryA(LPCSTR,HANDLE,DWORD,LPCSTR,BOOL);
|
||||
HINSTANCE WINAPI MLLoadLibraryW(LPCWSTR,HANDLE,DWORD,LPCWSTR,BOOL);
|
||||
|
||||
HRESULT WINAPI DllInstall(BOOL,LPCWSTR);
|
||||
|
||||
#ifdef UNICODE
|
||||
#define ChrCmpI ChrCmpIW
|
||||
#define IntlStrEqN IntlStrEqNW
|
||||
#define IntlStrEqNI IntlStrEqNIW
|
||||
#define IntlStrEqWorker IntlStrEqWorkerW
|
||||
#define SHStrDup SHStrDupW
|
||||
#define StrCat StrCatW
|
||||
#define StrCatBuff StrCatBuffW
|
||||
#define StrChr StrChrW
|
||||
#define StrChrI StrChrIW
|
||||
#define StrCmp StrCmpW
|
||||
#define StrCmpI StrCmpIW
|
||||
#define StrCmpNI StrCmpNIW
|
||||
#define StrCmpN StrCmpNW
|
||||
#define StrCpyN StrCpyNW
|
||||
#define StrCpy StrCpyW
|
||||
#define StrCSpnI StrCSpnIW
|
||||
#define StrCSpn StrCSpnW
|
||||
#define StrDup StrDupW
|
||||
#define StrFormatByteSize StrFormatByteSizeW
|
||||
#define StrFormatKBSize StrFormatKBSizeW
|
||||
#define StrFromTimeInterval StrFromTimeIntervalW
|
||||
#define StrIsIntlEqual StrIsIntlEqualW
|
||||
#define StrNCat StrNCatW
|
||||
#define StrPBrk StrPBrkW
|
||||
#define StrRChr StrRChrW
|
||||
#define StrRChrI StrRChrIW
|
||||
#ifndef __OBJC__
|
||||
#define StrRetToBuf StrRetToBufW
|
||||
#define StrRetToStr StrRetToStrW
|
||||
#endif
|
||||
#define StrRStrI StrRStrIW
|
||||
#define StrSpn StrSpnW
|
||||
#define StrStrI StrStrIW
|
||||
#define StrStr StrStrW
|
||||
#define StrToInt StrToIntW
|
||||
#define StrToIntEx StrToIntExW
|
||||
#define StrTrim StrTrimW
|
||||
#define PathAddBackslash PathAddBackslashW
|
||||
#define PathAddExtension PathAddExtensionW
|
||||
#define PathAppend PathAppendW
|
||||
#define PathBuildRoot PathBuildRootW
|
||||
#define PathCanonicalize PathCanonicalizeW
|
||||
#define PathCombine PathCombineW
|
||||
#define PathCommonPrefix PathCommonPrefixW
|
||||
#define PathCompactPath PathCompactPathW
|
||||
#define PathCompactPathEx PathCompactPathExW
|
||||
#define PathCreateFromUrl PathCreateFromUrlW
|
||||
#define PathFileExists PathFileExistsW
|
||||
#define PathFindExtension PathFindExtensionW
|
||||
#define PathFindFileName PathFindFileNameW
|
||||
#define PathFindNextComponent PathFindNextComponentW
|
||||
#define PathFindOnPath PathFindOnPathW
|
||||
#define PathFindSuffixArray PathFindSuffixArrayW
|
||||
#define PathGetArgs PathGetArgsW
|
||||
#define PathGetCharType PathGetCharTypeW
|
||||
#define PathGetDriveNumber PathGetDriveNumberW
|
||||
#define PathIsContentType PathIsContentTypeW
|
||||
#define PathIsDirectoryEmpty PathIsDirectoryEmptyW
|
||||
#define PathIsDirectory PathIsDirectoryW
|
||||
#define PathIsFileSpec PathIsFileSpecW
|
||||
#define PathIsLFNFileSpec PathIsLFNFileSpecW
|
||||
#define PathIsNetworkPath PathIsNetworkPathW
|
||||
#define PathIsPrefix PathIsPrefixW
|
||||
#define PathIsRelative PathIsRelativeW
|
||||
#define PathIsRoot PathIsRootW
|
||||
#define PathIsSameRoot PathIsSameRootW
|
||||
#define PathIsSystemFolder PathIsSystemFolderW
|
||||
#define PathIsUNCServerShare PathIsUNCServerShareW
|
||||
#define PathIsUNCServer PathIsUNCServerW
|
||||
#define PathIsUNC PathIsUNCW
|
||||
#define PathIsURL PathIsURLW
|
||||
#define PathMakePretty PathMakePrettyW
|
||||
#define PathMakeSystemFolder PathMakeSystemFolderW
|
||||
#define PathMatchSpec PathMatchSpecW
|
||||
#define PathParseIconLocation PathParseIconLocationW
|
||||
#define PathQuoteSpaces PathQuoteSpacesW
|
||||
#define PathRelativePathTo PathRelativePathToW
|
||||
#define PathRemoveArgs PathRemoveArgsW
|
||||
#define PathRemoveBackslash PathRemoveBackslashW
|
||||
#define PathRemoveBlanks PathRemoveBlanksW
|
||||
#define PathRemoveExtension PathRemoveExtensionW
|
||||
#define PathRemoveFileSpec PathRemoveFileSpecW
|
||||
#define PathRenameExtension PathRenameExtensionW
|
||||
#define PathSearchAndQualify PathSearchAndQualifyW
|
||||
#define PathSetDlgItemPath PathSetDlgItemPathW
|
||||
#define PathSkipRoot PathSkipRootW
|
||||
#define PathStripPath PathStripPathW
|
||||
#define PathStripToRoot PathStripToRootW
|
||||
#define PathUndecorate PathUndecorateW
|
||||
#define PathUnExpandEnvStrings PathUnExpandEnvStringsW
|
||||
#define PathUnmakeSystemFolder PathUnmakeSystemFolderW
|
||||
#define PathUnquoteSpaces PathUnquoteSpacesW
|
||||
#ifndef __OBJC__
|
||||
#define SHCreateStreamOnFile SHCreateStreamOnFileW
|
||||
#define SHOpenRegStream SHOpenRegStreamW
|
||||
#define SHOpenRegStream2 SHOpenRegStream2W
|
||||
#endif
|
||||
#define SHCopyKey SHCopyKeyW
|
||||
#define SHDeleteEmptyKey SHDeleteEmptyKeyW
|
||||
#define SHDeleteKey SHDeleteKeyW
|
||||
#define SHEnumKeyEx SHEnumKeyExW
|
||||
#define SHQueryInfoKey SHRegQueryInfoKeyW
|
||||
#define SHQueryValueEx SHQueryValueExW
|
||||
#define SHEnumValue SHEnumValueW
|
||||
#define SHGetValue SHGetValueW
|
||||
#define SHSetValue SHSetValueW
|
||||
#define SHDeleteValue SHDeleteValueW
|
||||
#define AssocQueryKey AssocQueryKeyW
|
||||
#define AssocQueryStringByKey AssocQueryStringByKeyW
|
||||
#define AssocQueryString AssocQueryStringW
|
||||
#define UrlApplyScheme UrlApplySchemeW
|
||||
#define UrlCanonicalize UrlCanonicalizeW
|
||||
#define UrlCombine UrlCombineW
|
||||
#define UrlCompare UrlCompareW
|
||||
#define UrlCreateFromPath UrlCreateFromPathW
|
||||
#define UrlEscape UrlEscapeW
|
||||
#define UrlGetLocation UrlGetLocationW
|
||||
#define UrlGetPart UrlGetPartW
|
||||
#define UrlHash UrlHashW
|
||||
#define UrlIs UrlIsW
|
||||
#define UrlIsFileUrl UrlIsFileUrlW
|
||||
#define UrlIsNoHistory UrlIsNoHistoryW
|
||||
#define UrlIsOpaque UrlIsOpaqueW
|
||||
#define UrlUnescape UrlUnescapeW
|
||||
#define UrlUnescapeInPlace UrlUnescapeInPlaceW
|
||||
#define SHRegCreateUSKey SHRegCreateUSKeyW
|
||||
#define SHRegDeleteEmptyUSKey SHRegDeleteEmptyUSKeyW
|
||||
#define SHRegDeleteUSValue SHRegDeleteUSValueW
|
||||
#define SHRegEnumUSKey SHRegEnumUSKeyW
|
||||
#define SHRegEnumUSValue SHRegEnumUSValueW
|
||||
#define SHRegGetBoolUSValue SHRegGetBoolUSValueW
|
||||
#define SHRegGetPath SHRegGetPathW
|
||||
#define SHRegGetUSValue SHRegGetUSValueW
|
||||
#define SHRegOpenUSKey SHRegOpenUSKeyW
|
||||
#define SHRegQueryInfoUSKey SHRegQueryInfoUSKeyW
|
||||
#define SHRegQueryUSValue SHRegQueryUSValueW
|
||||
#define SHRegSetPath SHRegSetPathW
|
||||
#define SHRegSetUSValue SHRegSetUSValueW
|
||||
#define SHRegWriteUSValue SHRegWriteUSValueW
|
||||
#define wnsprintf wnsprintfW
|
||||
#define wvnsprintf wvnsprintfW
|
||||
#else /* UNICODE */
|
||||
#define ChrCmpI ChrCmpIA
|
||||
#define IntlStrEqN IntlStrEqNA
|
||||
#define IntlStrEqNI IntlStrEqNIA
|
||||
#define IntlStrEqWorker IntlStrEqWorkerA
|
||||
#define SHStrDup SHStrDupA
|
||||
#define StrCat lstrcatA
|
||||
#define StrCatBuff StrCatBuffA
|
||||
#define StrChr StrChrA
|
||||
#define StrChrI StrChrIA
|
||||
#define StrCmp lstrcmpA
|
||||
#define StrCmpI lstrcmpiA
|
||||
#define StrCmpNI StrCmpNIA
|
||||
#define StrCmpN StrCmpNA
|
||||
#define StrCpyN lstrcpynA
|
||||
#define StrCpy lstrcpyA
|
||||
#define StrCSpnI StrCSpnIA
|
||||
#define StrCSpn StrCSpnA
|
||||
#define StrDup StrDupA
|
||||
#define StrFormatByteSize StrFormatByteSizeA
|
||||
#define StrFormatKBSize StrFormatKBSizeA
|
||||
#define StrFromTimeInterval StrFromTimeIntervalA
|
||||
#define StrIsIntlEqual StrIsIntlEqualA
|
||||
#define StrNCat StrNCatA
|
||||
#define StrPBrk StrPBrkA
|
||||
#define StrRChr StrRChrA
|
||||
#define StrRChrI StrRChrIA
|
||||
#ifndef __OBJC__
|
||||
#define StrRetToBuf StrRetToBufA
|
||||
#define StrRetToStr StrRetToStrA
|
||||
#endif
|
||||
#define StrRStrI StrRStrIA
|
||||
#define StrSpn StrSpnA
|
||||
#define StrStrI StrStrIA
|
||||
#define StrStr StrStrA
|
||||
#define StrToInt StrToIntA
|
||||
#define StrToIntEx StrToIntExA
|
||||
#define StrTrim StrTrimA
|
||||
#define PathAddBackslash PathAddBackslashA
|
||||
#define PathAddExtension PathAddExtensionA
|
||||
#define PathAppend PathAppendA
|
||||
#define PathBuildRoot PathBuildRootA
|
||||
#define PathCanonicalize PathCanonicalizeA
|
||||
#define PathCombine PathCombineA
|
||||
#define PathCommonPrefix PathCommonPrefixA
|
||||
#define PathCompactPath PathCompactPathA
|
||||
#define PathCompactPathEx PathCompactPathExA
|
||||
#define PathCreateFromUrl PathCreateFromUrlA
|
||||
#define PathFileExists PathFileExistsA
|
||||
#define PathFindExtension PathFindExtensionA
|
||||
#define PathFindFileName PathFindFileNameA
|
||||
#define PathFindNextComponent PathFindNextComponentA
|
||||
#define PathFindOnPath PathFindOnPathA
|
||||
#define PathFindSuffixArray PathFindSuffixArrayA
|
||||
#define PathGetArgs PathGetArgsA
|
||||
#define PathGetCharType PathGetCharTypeA
|
||||
#define PathGetDriveNumber PathGetDriveNumberA
|
||||
#define PathIsContentType PathIsContentTypeA
|
||||
#define PathIsDirectoryEmpty PathIsDirectoryEmptyA
|
||||
#define PathIsDirectory PathIsDirectoryA
|
||||
#define PathIsFileSpec PathIsFileSpecA
|
||||
#define PathIsLFNFileSpec PathIsLFNFileSpecA
|
||||
#define PathIsNetworkPath PathIsNetworkPathA
|
||||
#define PathIsPrefix PathIsPrefixA
|
||||
#define PathIsRelative PathIsRelativeA
|
||||
#define PathIsRoot PathIsRootA
|
||||
#define PathIsSameRoot PathIsSameRootA
|
||||
#define PathIsSystemFolder PathIsSystemFolderA
|
||||
#define PathIsUNCServerShare PathIsUNCServerShareA
|
||||
#define PathIsUNCServer PathIsUNCServerA
|
||||
#define PathIsUNC PathIsUNCA
|
||||
#define PathIsURL PathIsURLA
|
||||
#define PathMakePretty PathMakePrettyA
|
||||
#define PathMakeSystemFolder PathMakeSystemFolderA
|
||||
#define PathMatchSpec PathMatchSpecA
|
||||
#define PathParseIconLocation PathParseIconLocationA
|
||||
#define PathQuoteSpaces PathQuoteSpacesA
|
||||
#define PathRelativePathTo PathRelativePathToA
|
||||
#define PathRemoveArgs PathRemoveArgsA
|
||||
#define PathRemoveBackslash PathRemoveBackslashA
|
||||
#define PathRemoveBlanks PathRemoveBlanksA
|
||||
#define PathRemoveExtension PathRemoveExtensionA
|
||||
#define PathRemoveFileSpec PathRemoveFileSpecA
|
||||
#define PathRenameExtension PathRenameExtensionA
|
||||
#define PathSearchAndQualify PathSearchAndQualifyA
|
||||
#define PathSetDlgItemPath PathSetDlgItemPathA
|
||||
#define PathSkipRoot PathSkipRootA
|
||||
#define PathStripPath PathStripPathA
|
||||
#define PathStripToRoot PathStripToRootA
|
||||
#define PathUndecorate PathUndecorateA
|
||||
#define PathUnExpandEnvStrings PathUnExpandEnvStringsA
|
||||
#define PathUnmakeSystemFolder PathUnmakeSystemFolderA
|
||||
#define PathUnquoteSpaces PathUnquoteSpacesA
|
||||
#ifndef __OBJC__
|
||||
#define SHCreateStreamOnFile SHCreateStreamOnFileA
|
||||
#define SHOpenRegStream SHOpenRegStreamA
|
||||
#define SHOpenRegStream2 SHOpenRegStream2A
|
||||
#endif
|
||||
#define SHCopyKey SHCopyKeyA
|
||||
#define SHDeleteEmptyKey SHDeleteEmptyKeyA
|
||||
#define SHDeleteKey SHDeleteKeyA
|
||||
#define SHEnumKeyEx SHEnumKeyExA
|
||||
#define SHQueryInfoKey SHRegQueryInfoKeyA
|
||||
#define SHQueryValueEx SHQueryValueExA
|
||||
#define SHEnumValue SHEnumValueA
|
||||
#define SHGetValue SHGetValueA
|
||||
#define SHSetValue SHSetValueA
|
||||
#define SHDeleteValue SHDeleteValueA
|
||||
#define AssocQueryKey AssocQueryKeyA
|
||||
#define AssocQueryStringByKey AssocQueryStringByKeyA
|
||||
#define AssocQueryString AssocQueryStringA
|
||||
#define UrlApplyScheme UrlApplySchemeA
|
||||
#define UrlCanonicalize UrlCanonicalizeA
|
||||
#define UrlCombine UrlCombineA
|
||||
#define UrlCompare UrlCompareA
|
||||
#define UrlCreateFromPath UrlCreateFromPathA
|
||||
#define UrlEscape UrlEscapeA
|
||||
#define UrlGetLocation UrlGetLocationA
|
||||
#define UrlGetPart UrlGetPartA
|
||||
#define UrlHash UrlHashA
|
||||
#define UrlIs UrlIsA
|
||||
#define UrlIsFileUrl UrlIsFileUrl
|
||||
#define UrlIsNoHistory UrlIsNoHistoryA
|
||||
#define UrlIsOpaque UrlIsOpaqueA
|
||||
#define UrlUnescape UrlUnescapeA
|
||||
#define UrlUnescapeInPlace UrlUnescapeInPlaceA
|
||||
#define SHRegCreateUSKey SHRegCreateUSKeyA
|
||||
#define SHRegDeleteEmptyUSKey SHRegDeleteEmptyUSKeyA
|
||||
#define SHRegDeleteUSValue SHRegDeleteUSValueA
|
||||
#define SHRegEnumUSKey SHRegEnumUSKeyA
|
||||
#define SHRegEnumUSValue SHRegEnumUSValueA
|
||||
#define SHRegGetBoolUSValue SHRegGetBoolUSValueA
|
||||
#define SHRegGetPath SHRegGetPathA
|
||||
#define SHRegGetUSValue SHRegGetUSValueA
|
||||
#define SHRegOpenUSKey SHRegOpenUSKeyA
|
||||
#define SHRegQueryInfoUSKey SHRegQueryInfoUSKeyA
|
||||
#define SHRegQueryUSValue SHRegQueryUSValueA
|
||||
#define SHRegSetPath SHRegSetPathA
|
||||
#define SHRegSetUSValue SHRegSetUSValueA
|
||||
#define SHRegWriteUSValue SHRegWriteUSValueA
|
||||
#define wnsprintf wnsprintfA
|
||||
#define wvnsprintf wvnsprintfA
|
||||
#endif /* UNICODE */
|
||||
|
||||
#define StrToLong StrToInt
|
||||
|
||||
#endif /* !RC_INVOKED */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Second part: entries copied from Wine */
|
||||
|
||||
#define SHREGSET_HKCU 0x1 /* Apply to HKCU if empty */
|
||||
#define SHREGSET_FORCE_HKCU 0x2 /* Always apply to HKCU */
|
||||
#define SHREGSET_HKLM 0x4 /* Apply to HKLM if empty */
|
||||
#define SHREGSET_FORCE_HKLM 0x8 /* Always apply to HKLM */
|
||||
#define SHREGSET_DEFAULT (SHREGSET_FORCE_HKCU | SHREGSET_HKLM)
|
||||
|
||||
/* These are used by UrlGetPart routine */
|
||||
typedef enum {
|
||||
URL_PART_NONE = 0,
|
||||
URL_PART_SCHEME = 1,
|
||||
URL_PART_HOSTNAME,
|
||||
URL_PART_USERNAME,
|
||||
URL_PART_PASSWORD,
|
||||
URL_PART_PORT,
|
||||
URL_PART_QUERY
|
||||
} URL_PART;
|
||||
|
||||
/* This is used by the UrlApplyScheme... routines */
|
||||
#define URL_APPLY_FORCEAPPLY 0x00000008
|
||||
#define URL_APPLY_GUESSFILE 0x00000004
|
||||
#define URL_APPLY_GUESSSCHEME 0x00000002
|
||||
#define URL_APPLY_DEFAULT 0x00000001
|
||||
|
||||
#define URL_DONT_UNESCAPE_EXTRA_INFO URL_DONT_ESCAPE_EXTRA_INFO
|
||||
|
||||
/* StrToIntEx flags */
|
||||
#define STIF_DEFAULT 0x0L
|
||||
#define STIF_SUPPORT_HEX 0x1L
|
||||
|
||||
/* SHCreateThread flags */
|
||||
#define CTF_INSIST 0x01 /* Allways call */
|
||||
#define CTF_THREAD_REF 0x02 /* Hold thread ref */
|
||||
#define CTF_PROCESS_REF 0x04 /* Hold process ref */
|
||||
#define CTF_COINIT 0x08 /* Startup COM first */
|
||||
#define CTF_FREELIBANDEXIT 0x10 /* Hold DLL ref */
|
||||
#define CTF_REF_COUNTED 0x20 /* Thread is ref counted */
|
||||
#define CTF_WAIT_ALLOWCOM 0x40 /* Allow marshalling */
|
||||
|
||||
/* GetPathCharType return flags */
|
||||
#define GCT_INVALID 0x0
|
||||
#define GCT_LFNCHAR 0x1
|
||||
#define GCT_SHORTCHAR 0x2
|
||||
#define GCT_WILD 0x4
|
||||
#define GCT_SEPARATOR 0x8
|
||||
|
||||
enum
|
||||
{
|
||||
ASSOCF_INIT_NOREMAPCLSID = 0x001, /* Don't map clsid->progid */
|
||||
ASSOCF_INIT_BYEXENAME = 0x002, /* .exe name given */
|
||||
ASSOCF_OPEN_BYEXENAME = 0x002, /* Synonym */
|
||||
ASSOCF_INIT_DEFAULTTOSTAR = 0x004, /* Use * as base */
|
||||
ASSOCF_INIT_DEFAULTTOFOLDER = 0x008, /* Use folder as base */
|
||||
ASSOCF_NOUSERSETTINGS = 0x010, /* No HKCU reads */
|
||||
ASSOCF_NOTRUNCATE = 0x020, /* Don't truncate return */
|
||||
ASSOCF_VERIFY = 0x040, /* Verify data */
|
||||
ASSOCF_REMAPRUNDLL = 0x080, /* Get rundll args */
|
||||
ASSOCF_NOFIXUPS = 0x100, /* Don't fixup errors */
|
||||
ASSOCF_IGNOREBASECLASS = 0x200, /* Dont read baseclass */
|
||||
};
|
||||
|
||||
typedef enum
|
||||
{
|
||||
ASSOCENUM_NONE
|
||||
} ASSOCENUM;
|
||||
|
||||
typedef struct IQueryAssociations IQueryAssociations,*LPQUERYASSOCIATIONS;
|
||||
|
||||
#define INTERFACE IQueryAssociations
|
||||
#define IQueryAssociations_METHODS \
|
||||
IUnknown_METHODS \
|
||||
STDMETHOD(Init)(THIS_ ASSOCF flags, LPCWSTR pszAssoc, HKEY hkProgid, HWND hwnd) PURE; \
|
||||
STDMETHOD(GetString)(THIS_ ASSOCF flags, ASSOCSTR str, LPCWSTR pszExtra, LPWSTR pszOut, DWORD * pcchOut) PURE; \
|
||||
STDMETHOD(GetKey)(THIS_ ASSOCF flags, ASSOCKEY key, LPCWSTR pszExtra, HKEY * phkeyOut) PURE; \
|
||||
STDMETHOD(GetData)(THIS_ ASSOCF flags, ASSOCDATA data, LPCWSTR pszExtra, LPVOID pvOut, DWORD * pcbOut) PURE; \
|
||||
STDMETHOD(GetEnum)(THIS_ ASSOCF flags, ASSOCENUM assocenum, LPCWSTR pszExtra, REFIID riid, LPVOID * ppvOut) PURE;
|
||||
ICOM_DEFINE(IQueryAssociations,IUnknown)
|
||||
#undef INTERFACE
|
||||
|
||||
#ifdef COBJMACROS
|
||||
#define IQueryAssociations_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IQueryAssociations_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IQueryAssociations_Release(p) (p)->lpVtbl->Release(p)
|
||||
#define IQueryAssociations_Init(p,a,b,c,d) (p)->lpVtbl->Init(p,a,b,c,d)
|
||||
#define IQueryAssociations_GetString(p,a,b,c,d,e) (p)->lpVtbl->GetString(p,a,b,c,d,e)
|
||||
#define IQueryAssociations_GetKey(p,a,b,c,d) (p)->lpVtbl->GetKey(p,a,b,c,d)
|
||||
#define IQueryAssociations_GetData(p,a,b,c,d,e) (p)->lpVtbl->GetData(p,a,b,c,d,e)
|
||||
#define IQueryAssociations_GetEnum(p,a,b,c,d,e) (p)->lpVtbl->GetEnum(p,a,b,c,d,e)
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_SHLWAPI_H */
|
4118
reactos/include/wine/shobjidl.h
Normal file
60
reactos/include/wine/shtypes.h
Normal file
|
@ -0,0 +1,60 @@
|
|||
/*** Autogenerated by WIDL 0.1 from shtypes.idl - Do not edit ***/
|
||||
#include <rpc.h>
|
||||
#include <rpcndr.h>
|
||||
|
||||
#ifndef __WIDL_SHTYPES_H
|
||||
#define __WIDL_SHTYPES_H
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#include <wtypes.h>
|
||||
#include <pshpack1.h>
|
||||
typedef struct {
|
||||
WORD cb;
|
||||
BYTE abID[1];
|
||||
} SHITEMID, *LPSHITEMID;
|
||||
|
||||
typedef const SHITEMID *LPCSHITEMID;
|
||||
|
||||
typedef struct _ITEMIDLIST {
|
||||
SHITEMID mkid;
|
||||
} ITEMIDLIST, *LPITEMIDLIST;
|
||||
|
||||
typedef const ITEMIDLIST *LPCITEMIDLIST;
|
||||
|
||||
#include <poppack.h>
|
||||
#if 0
|
||||
typedef struct {
|
||||
int dummy;
|
||||
} WIN32_FIND_DATAA, WIN32_FIND_DATAW;
|
||||
|
||||
#endif
|
||||
typedef enum tagSTRRET_TYPE {
|
||||
STRRET_WSTR = 0,
|
||||
STRRET_OFFSET = 1,
|
||||
STRRET_CSTR = 2
|
||||
} STRRET_TYPE;
|
||||
|
||||
#include <pshpack4.h>
|
||||
typedef struct _STRRET {
|
||||
UINT uType;
|
||||
union {
|
||||
LPWSTR pOleStr;
|
||||
UINT uOffset;
|
||||
char cStr[260];
|
||||
} DUMMYUNIONNAME;
|
||||
} STRRET, *LPSTRRET;
|
||||
|
||||
#include <poppack.h>
|
||||
#include <pshpack1.h>
|
||||
typedef struct {
|
||||
int fmt;
|
||||
int cxChar;
|
||||
STRRET str;
|
||||
} SHELLDETAILS, *LPSHELLDETAILS;
|
||||
|
||||
#include <poppack.h>
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* __WIDL_SHTYPES_H */
|
|
@ -1,30 +1,84 @@
|
|||
#ifndef _WINE_UNICODE_H
|
||||
#define _WINE_UNICODE_H
|
||||
|
||||
#define strlenW(s) wcslen((const wchar_t *)s)
|
||||
#define strcpyW(d,s) wcscpy((wchar_t *)d,(const wchar_t *)s)
|
||||
#define strcatW(d,s) wcscat((wchar_t *)d,(const wchar_t *)s)
|
||||
#define strstrW(d,s) wcsstr((const wchar_t *)d,(const wchar_t *)s)
|
||||
#define strtolW(s,e,b) wcstol((const wchar_t *)s,(wchar_t **)e,b)
|
||||
#define strchrW(s,c) wcschr((const wchar_t *)s,(wchar_t)c)
|
||||
#define strrchrW(s,c) wcsrchr((const wchar_t *)s,(wchar_t)c)
|
||||
#define strncmpW(s1,s2,n) wcsncmp((const wchar_t *)s1,(const wchar_t *)s2,n)
|
||||
#define strncpyW(s1,s2,n) wcsncpy((wchar_t *)s1,(const wchar_t *)s2,n)
|
||||
#define strcmpW(s1,s2) wcscmp((const wchar_t *)s1,(const wchar_t *)s2)
|
||||
#define strcmpiW(s1,s2) _wcsicmp((const wchar_t *)s1,(const wchar_t *)s2)
|
||||
#define strncmpiW(s1,s2,n) _wcsnicmp((const wchar_t *)s1,(const wchar_t *)s2,n)
|
||||
#define tolowerW(n) towlower((wint_t)n)
|
||||
#define toupperW(n) towupper((wint_t)n)
|
||||
#define islowerW(n) iswlower((wint_t)n)
|
||||
#define isupperW(n) iswupper((wint_t)n)
|
||||
#define isalphaW(n) iswalpha((wint_t)n)
|
||||
#define isalnumW(n) iswalnum((wint_t)n)
|
||||
#define isdigitW(n) iswdigit((wint_t)n)
|
||||
#define isxdigitW(n) iswxdigit((wint_t)n)
|
||||
#define isspaceW(n) iswspace((wint_t)n)
|
||||
#define atoiW(s) _wtoi((const wchar_t *)s)
|
||||
#define atolW(s) _wtol((const wchar_t *)s)
|
||||
#define strlwrW(s) _wcslwr((wchar_t *)s)
|
||||
#define struprW(s) _wcsupr((wchar_t *)s)
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winnls.h>
|
||||
|
||||
/* code page info common to SBCS and DBCS */
|
||||
struct cp_info
|
||||
{
|
||||
unsigned int codepage; /* codepage id */
|
||||
unsigned int char_size; /* char size (1 or 2 bytes) */
|
||||
wchar_t def_char; /* default char value (can be double-byte) */
|
||||
wchar_t def_unicode_char; /* default Unicode char value */
|
||||
const char *name; /* code page name */
|
||||
};
|
||||
|
||||
struct sbcs_table
|
||||
{
|
||||
struct cp_info info;
|
||||
const wchar_t *cp2uni; /* code page -> Unicode map */
|
||||
const unsigned char *uni2cp_low; /* Unicode -> code page map */
|
||||
const unsigned short *uni2cp_high;
|
||||
};
|
||||
|
||||
struct dbcs_table
|
||||
{
|
||||
struct cp_info info;
|
||||
const wchar_t *cp2uni; /* code page -> Unicode map */
|
||||
const unsigned char *cp2uni_leadbytes;
|
||||
const unsigned short *uni2cp_low; /* Unicode -> code page map */
|
||||
const unsigned short *uni2cp_high;
|
||||
unsigned char lead_bytes[12]; /* lead bytes ranges */
|
||||
};
|
||||
|
||||
union cptable
|
||||
{
|
||||
struct cp_info info;
|
||||
struct sbcs_table sbcs;
|
||||
struct dbcs_table dbcs;
|
||||
};
|
||||
|
||||
#define strlenW(s) wcslen((const wchar_t *)(s))
|
||||
#define strcpyW(d,s) wcscpy((wchar_t *)(d),(const wchar_t *)(s))
|
||||
#define strcatW(d,s) wcscat((wchar_t *)(d),(const wchar_t *)(s))
|
||||
#define strstrW(d,s) wcsstr((const wchar_t *)(d),(const wchar_t *)(s))
|
||||
#define strtolW(s,e,b) wcstol((const wchar_t *)(s),(wchar_t **)(e),(b))
|
||||
#define strchrW(s,c) wcschr((const wchar_t *)(s),(wchar_t)(c))
|
||||
#define strrchrW(s,c) wcsrchr((const wchar_t *)(s),(wchar_t)(c))
|
||||
#define strncmpW(s1,s2,n) wcsncmp((const wchar_t *)(s1),(const wchar_t *)(s2),(n))
|
||||
#define strncpyW(s1,s2,n) wcsncpy((wchar_t *)(s1),(const wchar_t *)(s2),(n))
|
||||
#define strcmpW(s1,s2) wcscmp((const wchar_t *)(s1),(const wchar_t *)(s2))
|
||||
#define strcmpiW(s1,s2) _wcsicmp((const wchar_t *)(s1),(const wchar_t *)(s2))
|
||||
#define strncmpiW(s1,s2,n) _wcsnicmp((const wchar_t *)(s1),(const wchar_t *)(s2),(n))
|
||||
#define tolowerW(n) towlower((n))
|
||||
#define toupperW(n) towupper((n))
|
||||
#define islowerW(n) iswlower((n))
|
||||
#define isupperW(n) iswupper((n))
|
||||
#define isalphaW(n) iswalpha((n))
|
||||
#define isalnumW(n) iswalnum((n))
|
||||
#define isdigitW(n) iswdigit((n))
|
||||
#define isxdigitW(n) iswxdigit((n))
|
||||
#define isspaceW(n) iswspace((n))
|
||||
#define atoiW(s) _wtoi((const wchar_t *)(s))
|
||||
#define atolW(s) _wtol((const wchar_t *)(s))
|
||||
#define strlwrW(s) _wcslwr((wchar_t *)(s))
|
||||
#define struprW(s) _wcsupr((wchar_t *)(s))
|
||||
#define sprintfW wsprintfW
|
||||
|
||||
#ifndef WINE_UNICODE_API
|
||||
#define WINE_UNICODE_API __attribute__((dllimport))
|
||||
#endif
|
||||
|
||||
/* the character type contains the C1_* flags in the low 12 bits */
|
||||
/* and the C2_* type in the high 4 bits */
|
||||
static inline unsigned short get_char_typeW( wchar_t ch )
|
||||
{
|
||||
extern WINE_UNICODE_API const unsigned short wine_wctype_table[];
|
||||
return wine_wctype_table[wine_wctype_table[ch >> 8] + (ch & 0xff)];
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
38
reactos/include/wine/unknwn.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
#include_next <unknwn.h>
|
||||
|
||||
#ifndef __WINE_UNKNWN_H
|
||||
#define __WINE_UNKNWN_H
|
||||
|
||||
DEFINE_GUID(IID_IUnknown, 0x00000000, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IUnknown_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IUnknown_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IUnknown_Release(p) (p)->lpVtbl->Release(p)
|
||||
|
||||
DEFINE_GUID(IID_IClassFactory, 0x00000001, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
#define IClassFactory_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IClassFactory_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IClassFactory_Release(p) (p)->lpVtbl->Release(p)
|
||||
/*** IClassFactory methods ***/
|
||||
#define IClassFactory_CreateInstance(p,a,b,c) (p)->lpVtbl->CreateInstance(p,a,b,c)
|
||||
#define IClassFactory_LockServer(p,a) (p)->lpVtbl->LockServer(p,a)
|
||||
|
||||
#if defined(ICOM_MSVTABLE_COMPAT) && (!defined(__cplusplus) || defined(CINTERFACE))
|
||||
# define ICOM_MSVTABLE_COMPAT_FIELDS long dummyRTTI1,dummyRTTI2;
|
||||
# define ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE 0,0,
|
||||
#else
|
||||
# define ICOM_MSVTABLE_COMPAT_FIELDS
|
||||
# define ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
||||
#endif
|
||||
|
||||
#define IUnknown_METHODS \
|
||||
ICOM_MSVTABLE_COMPAT_FIELDS \
|
||||
/*** IUnknown methods ***/ \
|
||||
STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE; \
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE; \
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||
|
||||
#endif /* __WINE_UNKNWN_H */
|
24
reactos/include/wine/winbase16.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* Copyright (C) the Wine project
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_WINE_WINBASE16_H
|
||||
#define __WINE_WINE_WINBASE16_H
|
||||
|
||||
#include <wine/windef16.h>
|
||||
|
||||
#endif /* __WINE_WINE_WINBASE16_H */
|
39
reactos/include/wine/winerror.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* Copyright (C) the Wine project
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_WINERROR_H
|
||||
#define __WINE_WINERROR_H
|
||||
|
||||
#include_next <winerror.h>
|
||||
|
||||
#ifdef RC_INVOKED
|
||||
#define _HRESULT_TYPEDEF_(x) (x)
|
||||
#else
|
||||
#define _HRESULT_TYPEDEF_(x) ((HRESULT)x)
|
||||
#endif
|
||||
|
||||
/* ERROR_UNKNOWN is a placeholder for error conditions which haven't
|
||||
* been tested yet so we're not exactly sure what will be returned.
|
||||
* All instances of ERROR_UNKNOWN should be tested under Win95/NT
|
||||
* and replaced.
|
||||
*/
|
||||
#define ERROR_UNKNOWN 99999
|
||||
#define E_UNSPEC E_FAIL
|
||||
#define CO_S_NOTALLINTERFACES _HRESULT_TYPEDEF_(0x00080012L)
|
||||
|
||||
#endif /* __WINE_WINERROR_H */
|
40
reactos/include/wine/wingdi16.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* Copyright (C) the Wine project
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_WINE_WINGDI16_H
|
||||
#define __WINE_WINE_WINGDI16_H
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <wingdi.h>
|
||||
#include <wine/winbase16.h>
|
||||
|
||||
#include <pshpack1.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
INT16 mm;
|
||||
INT16 xExt;
|
||||
INT16 yExt;
|
||||
HMETAFILE16 hMF;
|
||||
} METAFILEPICT16, *LPMETAFILEPICT16;
|
||||
|
||||
#include <poppack.h>
|
||||
|
||||
#endif /* __WINE_WINE_WINGDI16_H */
|
50
reactos/include/wine/winnt.h
Normal file
|
@ -0,0 +1,50 @@
|
|||
/*
|
||||
* Win32 definitions for Windows NT
|
||||
*
|
||||
* Copyright 1996 Alexandre Julliard
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_WINNT_H
|
||||
#define __WINE_WINNT_H
|
||||
|
||||
#include_next <winnt.h>
|
||||
|
||||
/* non standard; keep the number high enough (but < 0xff) */
|
||||
#define LANG_ESPERANTO 0x8f
|
||||
#define LANG_WALON 0x90
|
||||
#define LANG_CORNISH 0x91
|
||||
#define LANG_WELSH 0x92
|
||||
#define LANG_BRETON 0x93
|
||||
|
||||
#define WINE_UNUSED __attribute__((unused))
|
||||
|
||||
static inline struct _TEB * NtCurrentTeb(void)
|
||||
{
|
||||
struct _TEB * pTeb;
|
||||
|
||||
/* FIXME: instead of hardcoded offsets, use offsetof() - if possible */
|
||||
__asm__ __volatile__
|
||||
(
|
||||
"movl %%fs:0x18, %0\n" /* fs:18h == Teb->Tib.Self */
|
||||
: "=r" (pTeb) /* can't have two memory operands */
|
||||
: /* no inputs */
|
||||
);
|
||||
|
||||
return pTeb;
|
||||
}
|
||||
|
||||
#endif /* __WINE_WINNT_H */
|
|
@ -1,8 +1,12 @@
|
|||
#ifndef __WINE_WINUSER_H
|
||||
#define __WINE_WINUSER_H
|
||||
|
||||
/*
|
||||
* Compatibility header
|
||||
*/
|
||||
|
||||
#include <w32api.h>
|
||||
#include <wingdi.h>
|
||||
#include_next <winuser.h>
|
||||
#if (__W32API_MAJOR_VERSION >= 2) && (__W32API_MINOR_VERSION < 4)
|
||||
#ifndef _WINUSER_COMPAT_H
|
||||
|
@ -14,3 +18,16 @@ typedef LPDLGTEMPLATE LPDLGTEMPLATEA, LPDLGTEMPLATEW;
|
|||
#endif /* WINVER >= _W2K */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define WS_EX_TRAYWINDOW 0x80000000L
|
||||
#define MIM_MENUDATA 0x00000008
|
||||
|
||||
#define DCX_USESTYLE 0x00010000
|
||||
#define WS_EX_MANAGED 0x40000000L /* Window managed by the window system */
|
||||
|
||||
UINT WINAPI PrivateExtractIconsA(LPCSTR,int,int,int,HICON*,UINT*,UINT,UINT);
|
||||
UINT WINAPI PrivateExtractIconsW(LPCWSTR,int,int,int,HICON*,UINT*,UINT,UINT);
|
||||
|
||||
typedef struct tagCWPSTRUCT *LPCWPSTRUCT;
|
||||
|
||||
#endif /* __WINE_WINUSER_H */
|
||||
|
|
22
reactos/include/wine/winuser16.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* Copyright (C) the Wine project
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_WINE_WINUSER16_H
|
||||
#define __WINE_WINE_WINUSER16_H
|
||||
|
||||
#endif /* __WINE_WINE_WINUSER16_H */
|
25
reactos/include/wine/wownt32.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* WOW Generic Thunk API
|
||||
*
|
||||
* Copyright (C) 1999 Ulrich Weigand
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef _WOWNT32_H_
|
||||
#define _WOWNT32_H_
|
||||
|
||||
|
||||
#endif /* _WOWNT32_H_ */
|
15
reactos/include/wine/wtypes.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include_next <wtypes.h>
|
||||
|
||||
#ifndef __WINE_WTYPES_H
|
||||
#define __WINE_WTYPES_H
|
||||
|
||||
typedef CHAR OLECHAR16;
|
||||
|
||||
typedef LPSTR LPOLESTR16;
|
||||
|
||||
typedef LPCSTR LPCOLESTR16;
|
||||
|
||||
/* Should be in MSHCTX enum but is not in w32api */
|
||||
#define MSHCTX_CROSSCTX 4
|
||||
|
||||
#endif /* __WINE_WTYPES_H */
|
|
@ -6,3 +6,15 @@
|
|||
*.sym
|
||||
*.map
|
||||
*.tmp
|
||||
Makefile.ros
|
||||
idb_hist_large.bmp
|
||||
idb_hist_small.bmp
|
||||
idb_std_small.bmp
|
||||
idb_std_large.bmp
|
||||
idb_view_large.bmp
|
||||
idb_view_small.bmp
|
||||
idc_divider.cur
|
||||
idc_divideropen.cur
|
||||
idi_dragarrow.ico
|
||||
idt_check.bmp
|
||||
comctl32.spec.def
|
||||
|
|
57
reactos/lib/comctl32/Makefile.in
Normal file
|
@ -0,0 +1,57 @@
|
|||
EXTRADEFS = -D_COMCTL32_
|
||||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
MODULE = comctl32.dll
|
||||
IMPORTS = user32 gdi32 advapi32 kernel32
|
||||
DELAYIMPORTS = winmm
|
||||
EXTRALIBS = $(LIBUNICODE)
|
||||
|
||||
C_SRCS = \
|
||||
animate.c \
|
||||
comboex.c \
|
||||
comctl32undoc.c \
|
||||
commctrl.c \
|
||||
datetime.c \
|
||||
draglist.c \
|
||||
flatsb.c \
|
||||
header.c \
|
||||
hotkey.c \
|
||||
imagelist.c \
|
||||
ipaddress.c \
|
||||
listview.c \
|
||||
monthcal.c \
|
||||
nativefont.c \
|
||||
pager.c \
|
||||
progress.c \
|
||||
propsheet.c \
|
||||
rebar.c \
|
||||
smoothscroll.c \
|
||||
status.c \
|
||||
tab.c \
|
||||
toolbar.c \
|
||||
tooltips.c \
|
||||
trackbar.c \
|
||||
treeview.c \
|
||||
updown.c
|
||||
|
||||
RC_SRCS = rsrc.rc
|
||||
RC_BINSRC = rsrc.rc
|
||||
RC_BINARIES = \
|
||||
idb_hist_large.bmp \
|
||||
idb_hist_small.bmp \
|
||||
idb_std_small.bmp \
|
||||
idb_std_large.bmp \
|
||||
idb_view_large.bmp \
|
||||
idb_view_small.bmp \
|
||||
idc_divider.cur \
|
||||
idc_divideropen.cur \
|
||||
idi_dragarrow.ico \
|
||||
idt_check.bmp
|
||||
|
||||
SUBDIRS = tests
|
||||
|
||||
@MAKE_DLL_RULES@
|
||||
|
||||
### Dependencies:
|
21
reactos/lib/comctl32/Makefile.ros-template
Normal file
|
@ -0,0 +1,21 @@
|
|||
# $Id: Makefile.ros-template,v 1.1 2004/01/02 19:49:45 gvg Exp $
|
||||
|
||||
TARGET_NAME = comctl32
|
||||
|
||||
TARGET_OBJECTS = @C_SRCS@
|
||||
|
||||
TARGET_CFLAGS = @EXTRADEFS@
|
||||
|
||||
TARGET_SDKLIBS = @IMPORTS@ winmm.a libwine.a wine_uuid.a ntdll.a
|
||||
|
||||
TARGET_BASE = 0x76160000
|
||||
|
||||
TARGET_RC_SRCS = @RC_SRCS@
|
||||
TARGET_RC_BINSRC = @RC_BINSRC@
|
||||
TARGET_RC_BINARIES = @RC_BINARIES@
|
||||
|
||||
default: all
|
||||
|
||||
DEP_OBJECTS = $(TARGET_OBJECTS)
|
||||
|
||||
include $(TOOLS_PATH)/depend.mk
|
|
@ -1,160 +0,0 @@
|
|||
LIBRARY comctl32.dll
|
||||
EXPORTS
|
||||
MenuHelp@28 @2
|
||||
ShowHideMenuCtl@12 @3
|
||||
GetEffectiveClientRect@12 @4
|
||||
DrawStatusTextA@16 @5
|
||||
CreateStatusWindowA@16 @6
|
||||
CreateToolbar@32 @7
|
||||
CreateMappedBitmap@20 @8
|
||||
DPA_LoadStream@16 @9 NONAME
|
||||
DPA_SaveStream@16 @10 NONAME
|
||||
DPA_Merge@24 @11 NONAME
|
||||
MakeDragList@4 @13
|
||||
LBItemFromPt@16 @14
|
||||
DrawInsert@12 @15
|
||||
CreateUpDownControl@48 @16
|
||||
InitCommonControls@0 @17
|
||||
Alloc@4 @71 NONAME
|
||||
ReAlloc@8 @72 NONAME
|
||||
Free@4 @73 NONAME
|
||||
GetSize@4 @74 NONAME
|
||||
CreateMRUListA@4 @151 NONAME
|
||||
FreeMRUList@4 @152 NONAME
|
||||
AddMRUStringA@8 @153 NONAME
|
||||
EnumMRUListA@16 @154 NONAME
|
||||
FindMRUStringA@12 @155 NONAME
|
||||
DelMRUString@8 @156 NONAME
|
||||
CreateMRUListLazyA@16 @157 NONAME
|
||||
AddMRUData@12 @167 NONAME
|
||||
FindMRUData@16 @169 NONAME
|
||||
Str_GetPtrA@12 @233 NONAME
|
||||
Str_SetPtrA@8 @234 NONAME
|
||||
Str_GetPtrW@12 @235 NONAME
|
||||
Str_SetPtrW@8 @236 NONAME
|
||||
DSA_Create@8 @320 NONAME
|
||||
DSA_Destroy@4 @321 NONAME
|
||||
DSA_GetItem@12 @322 NONAME
|
||||
DSA_GetItemPtr@8 @323 NONAME
|
||||
DSA_InsertItem@12 @324 NONAME
|
||||
DSA_SetItem@12 @325 NONAME
|
||||
DSA_DeleteItem@8 @326 NONAME
|
||||
DSA_DeleteAllItems@4 @327 NONAME
|
||||
DPA_Create@4 @328 NONAME
|
||||
DPA_Destroy@4 @329 NONAME
|
||||
DPA_Grow@8 @330 NONAME
|
||||
DPA_Clone@8 @331 NONAME
|
||||
DPA_GetPtr@8 @332 NONAME
|
||||
DPA_GetPtrIndex@8 @333 NONAME
|
||||
DPA_InsertPtr@12 @334 NONAME
|
||||
DPA_SetPtr@12 @335 NONAME
|
||||
DPA_DeletePtr@8 @336 NONAME
|
||||
DPA_DeleteAllPtrs@4 @337 NONAME
|
||||
DPA_Sort@12 @338 NONAME
|
||||
DPA_Search@24 @339 NONAME
|
||||
DPA_CreateEx@8 @340 NONAME
|
||||
SendNotify@16 @341 NONAME
|
||||
SendNotifyEx@20 @342 NONAME
|
||||
StrChrA@8 @350 NONAME
|
||||
StrRChrA@12 @351 NONAME
|
||||
StrCmpNA@12 @352 NONAME
|
||||
StrCmpNIA@12 @353 NONAME
|
||||
StrStrA@8 @354 NONAME
|
||||
StrStrIA@8 @355 NONAME
|
||||
StrCSpnA@8 @356 NONAME
|
||||
StrToIntA@4 @357 NONAME
|
||||
StrChrW@8 @358 NONAME
|
||||
StrRChrW@12 @359 NONAME
|
||||
StrCmpNW@12 @360 NONAME
|
||||
StrCmpNIW@12 @361 NONAME
|
||||
StrStrW@8 @362 NONAME
|
||||
StrStrIW@8 @363 NONAME
|
||||
StrSpnW@8 @364 NONAME
|
||||
StrToIntW@4 @365 NONAME
|
||||
SmoothScrollWindow@4 @382 NONAME
|
||||
DPA_EnumCallback@12 @385 NONAME
|
||||
DPA_DestroyCallback@12 @386 NONAME
|
||||
DSA_EnumCallback@12 @387 NONAME
|
||||
DSA_DestroyCallback@12 @388 NONAME
|
||||
CreateMRUListW@4 @400 NONAME
|
||||
AddMRUStringW@8 @401 NONAME
|
||||
FindMRUStringW@12 @402 NONAME
|
||||
EnumMRUListW@16 @403 NONAME
|
||||
CreateMRUListLazyW@16 @404 NONAME
|
||||
SetWindowSubclass@16 @410
|
||||
GetWindowSubclass@16 @411
|
||||
RemoveWindowSubclass@12 @412
|
||||
DefSubclassProc@16 @413
|
||||
DrawTextWrap@20 @415 NONAME
|
||||
ExtTextOutWrap@32 @417 NONAME
|
||||
GetTextExtentPointWrap@16 @419 NONAME
|
||||
CreatePropertySheetPage@4=CreatePropertySheetPageA@4 @12
|
||||
CreatePropertySheetPageA@4 @18
|
||||
CreatePropertySheetPageW@4 @19
|
||||
CreateStatusWindow@16=CreateStatusWindowA@16 @20
|
||||
CreateStatusWindowW@16 @21
|
||||
CreateToolbarEx@52 @22
|
||||
DestroyPropertySheetPage@4 @23
|
||||
DllGetVersion@4=COMCTL32_DllGetVersion@4 @24
|
||||
DllInstall@8=COMCTL32_DllInstall@8 @25
|
||||
DrawStatusText@16=DrawStatusTextA@16 @26
|
||||
DrawStatusTextW@16 @27
|
||||
FlatSB_EnableScrollBar@12 @28
|
||||
FlatSB_GetScrollInfo@12 @29
|
||||
FlatSB_GetScrollPos@8 @30
|
||||
FlatSB_GetScrollProp@12 @31
|
||||
FlatSB_GetScrollRange@16 @32
|
||||
FlatSB_SetScrollInfo@16 @33
|
||||
FlatSB_SetScrollPos@16 @34
|
||||
FlatSB_SetScrollProp@16 @35
|
||||
FlatSB_SetScrollRange@20 @36
|
||||
FlatSB_ShowScrollBar@12 @37
|
||||
GetMUILanguage@0 @38
|
||||
ImageList_Add@12 @39
|
||||
ImageList_AddIcon@8 @40
|
||||
ImageList_AddMasked@12 @41
|
||||
ImageList_BeginDrag@16 @42
|
||||
ImageList_Copy@20 @43
|
||||
ImageList_Create@20 @44
|
||||
ImageList_Destroy@4 @45
|
||||
ImageList_DragEnter@12 @46
|
||||
ImageList_DragLeave@4 @47
|
||||
ImageList_DragMove@8 @48
|
||||
ImageList_DragShowNolock@4 @49
|
||||
ImageList_Draw@24 @50
|
||||
ImageList_DrawEx@40 @51
|
||||
ImageList_DrawIndirect@4 @52
|
||||
ImageList_Duplicate@4 @53
|
||||
ImageList_EndDrag@0 @54
|
||||
ImageList_GetBkColor@4 @55
|
||||
ImageList_GetDragImage@8 @56
|
||||
ImageList_GetFlags@4 @57
|
||||
ImageList_GetIcon@12 @58
|
||||
ImageList_GetIconSize@12 @59
|
||||
ImageList_GetImageCount@4 @60
|
||||
ImageList_GetImageInfo@12 @61
|
||||
ImageList_GetImageRect@12 @62
|
||||
ImageList_LoadImage@28=ImageList_LoadImageA@28 @63
|
||||
ImageList_LoadImageA@28 @64
|
||||
ImageList_LoadImageW@28 @65
|
||||
ImageList_Merge@24 @66
|
||||
ImageList_Read@4 @67
|
||||
ImageList_Remove@8 @68
|
||||
ImageList_Replace@16 @69
|
||||
ImageList_ReplaceIcon@12 @70
|
||||
ImageList_SetBkColor@8 @75
|
||||
ImageList_SetDragCursorImage@16 @76
|
||||
ImageList_SetFilter@12 @77
|
||||
ImageList_SetFlags@8 @78
|
||||
ImageList_SetIconSize@12 @79
|
||||
ImageList_SetImageCount@8 @80
|
||||
ImageList_SetOverlayImage@12 @81
|
||||
ImageList_Write@8 @82
|
||||
InitCommonControlsEx@4 @83
|
||||
InitMUILanguage@4 @84
|
||||
InitializeFlatSB@4 @85
|
||||
PropertySheet@4=PropertySheetA@4 @86
|
||||
PropertySheetA@4 @87
|
||||
PropertySheetW@4 @88
|
||||
UninitializeFlatSB@4 @89
|
||||
_TrackMouseEvent@4 @90
|
|
@ -1,160 +0,0 @@
|
|||
LIBRARY comctl32.dll
|
||||
EXPORTS
|
||||
MenuHelp=MenuHelp@28 @2
|
||||
ShowHideMenuCtl=ShowHideMenuCtl@12 @3
|
||||
GetEffectiveClientRect=GetEffectiveClientRect@12 @4
|
||||
DrawStatusTextA=DrawStatusTextA@16 @5
|
||||
CreateStatusWindowA=CreateStatusWindowA@16 @6
|
||||
CreateToolbar=CreateToolbar@32 @7
|
||||
CreateMappedBitmap=CreateMappedBitmap@20 @8
|
||||
DPA_LoadStream=DPA_LoadStream@16 @9 NONAME
|
||||
DPA_SaveStream=DPA_SaveStream@16 @10 NONAME
|
||||
DPA_Merge=DPA_Merge@24 @11 NONAME
|
||||
MakeDragList=MakeDragList@4 @13
|
||||
LBItemFromPt=LBItemFromPt@16 @14
|
||||
DrawInsert=DrawInsert@12 @15
|
||||
CreateUpDownControl=CreateUpDownControl@48 @16
|
||||
InitCommonControls=InitCommonControls@0 @17
|
||||
Alloc=Alloc@4 @71 NONAME
|
||||
ReAlloc=ReAlloc@8 @72 NONAME
|
||||
Free=Free@4 @73 NONAME
|
||||
GetSize=GetSize@4 @74 NONAME
|
||||
CreateMRUListA=CreateMRUListA@4 @151 NONAME
|
||||
FreeMRUList=FreeMRUList@4 @152 NONAME
|
||||
AddMRUStringA=AddMRUStringA@8 @153 NONAME
|
||||
EnumMRUListA=EnumMRUListA@16 @154 NONAME
|
||||
FindMRUStringA=FindMRUStringA@12 @155 NONAME
|
||||
DelMRUString=DelMRUString@8 @156 NONAME
|
||||
CreateMRUListLazyA=CreateMRUListLazyA@16 @157 NONAME
|
||||
AddMRUData=AddMRUData@12 @167 NONAME
|
||||
FindMRUData=FindMRUData@16 @169 NONAME
|
||||
Str_GetPtrA=Str_GetPtrA@12 @233 NONAME
|
||||
Str_SetPtrA=Str_SetPtrA@8 @234 NONAME
|
||||
Str_GetPtrW=Str_GetPtrW@12 @235 NONAME
|
||||
Str_SetPtrW=Str_SetPtrW@8 @236 NONAME
|
||||
DSA_Create=DSA_Create@8 @320 NONAME
|
||||
DSA_Destroy=DSA_Destroy@4 @321 NONAME
|
||||
DSA_GetItem=DSA_GetItem@12 @322 NONAME
|
||||
DSA_GetItemPtr=DSA_GetItemPtr@8 @323 NONAME
|
||||
DSA_InsertItem=DSA_InsertItem@12 @324 NONAME
|
||||
DSA_SetItem=DSA_SetItem@12 @325 NONAME
|
||||
DSA_DeleteItem=DSA_DeleteItem@8 @326 NONAME
|
||||
DSA_DeleteAllItems=DSA_DeleteAllItems@4 @327 NONAME
|
||||
DPA_Create=DPA_Create@4 @328 NONAME
|
||||
DPA_Destroy=DPA_Destroy@4 @329 NONAME
|
||||
DPA_Grow=DPA_Grow@8 @330 NONAME
|
||||
DPA_Clone=DPA_Clone@8 @331 NONAME
|
||||
DPA_GetPtr=DPA_GetPtr@8 @332 NONAME
|
||||
DPA_GetPtrIndex=DPA_GetPtrIndex@8 @333 NONAME
|
||||
DPA_InsertPtr=DPA_InsertPtr@12 @334 NONAME
|
||||
DPA_SetPtr=DPA_SetPtr@12 @335 NONAME
|
||||
DPA_DeletePtr=DPA_DeletePtr@8 @336 NONAME
|
||||
DPA_DeleteAllPtrs=DPA_DeleteAllPtrs@4 @337 NONAME
|
||||
DPA_Sort=DPA_Sort@12 @338 NONAME
|
||||
DPA_Search=DPA_Search@24 @339 NONAME
|
||||
DPA_CreateEx=DPA_CreateEx@8 @340 NONAME
|
||||
SendNotify=SendNotify@16 @341 NONAME
|
||||
SendNotifyEx=SendNotifyEx@20 @342 NONAME
|
||||
StrChrA=StrChrA@8 @350 NONAME
|
||||
StrRChrA=StrRChrA@12 @351 NONAME
|
||||
StrCmpNA=StrCmpNA@12 @352 NONAME
|
||||
StrCmpNIA=StrCmpNIA@12 @353 NONAME
|
||||
StrStrA=StrStrA@8 @354 NONAME
|
||||
StrStrIA=StrStrIA@8 @355 NONAME
|
||||
StrCSpnA=StrCSpnA@8 @356 NONAME
|
||||
StrToIntA=StrToIntA@4 @357 NONAME
|
||||
StrChrW=StrChrW@8 @358 NONAME
|
||||
StrRChrW=StrRChrW@12 @359 NONAME
|
||||
StrCmpNW=StrCmpNW@12 @360 NONAME
|
||||
StrCmpNIW=StrCmpNIW@12 @361 NONAME
|
||||
StrStrW=StrStrW@8 @362 NONAME
|
||||
StrStrIW=StrStrIW@8 @363 NONAME
|
||||
StrSpnW=StrSpnW@8 @364 NONAME
|
||||
StrToIntW=StrToIntW@4 @365 NONAME
|
||||
SmoothScrollWindow=SmoothScrollWindow@4 @382 NONAME
|
||||
DPA_EnumCallback=DPA_EnumCallback@12 @385 NONAME
|
||||
DPA_DestroyCallback=DPA_DestroyCallback@12 @386 NONAME
|
||||
DSA_EnumCallback=DSA_EnumCallback@12 @387 NONAME
|
||||
DSA_DestroyCallback=DSA_DestroyCallback@12 @388 NONAME
|
||||
CreateMRUListW=CreateMRUListW@4 @400 NONAME
|
||||
AddMRUStringW=AddMRUStringW@8 @401 NONAME
|
||||
FindMRUStringW=FindMRUStringW@12 @402 NONAME
|
||||
EnumMRUListW=EnumMRUListW@16 @403 NONAME
|
||||
CreateMRUListLazyW=CreateMRUListLazyW@16 @404 NONAME
|
||||
SetWindowSubclass=SetWindowSubclass@16 @410
|
||||
GetWindowSubclass=GetWindowSubclass@16 @411
|
||||
RemoveWindowSubclass=RemoveWindowSubclass@12 @412
|
||||
DefSubclassProc=DefSubclassProc@16 @413
|
||||
DrawTextWrap=DrawTextWrap@20 @415 NONAME
|
||||
ExtTextOutWrap=ExtTextOutWrap@32 @417 NONAME
|
||||
GetTextExtentPointWrap=GetTextExtentPointWrap@16 @419 NONAME
|
||||
CreatePropertySheetPage=CreatePropertySheetPageA@4 @12
|
||||
CreatePropertySheetPageA=CreatePropertySheetPageA@4 @18
|
||||
CreatePropertySheetPageW=CreatePropertySheetPageW@4 @19
|
||||
CreateStatusWindow=CreateStatusWindowA@16 @20
|
||||
CreateStatusWindowW=CreateStatusWindowW@16 @21
|
||||
CreateToolbarEx=CreateToolbarEx@52 @22
|
||||
DestroyPropertySheetPage=DestroyPropertySheetPage@4 @23
|
||||
DllGetVersion=COMCTL32_DllGetVersion@4 @24
|
||||
DllInstall=COMCTL32_DllInstall@8 @25
|
||||
DrawStatusText=DrawStatusTextA@16 @26
|
||||
DrawStatusTextW=DrawStatusTextW@16 @27
|
||||
FlatSB_EnableScrollBar=FlatSB_EnableScrollBar@12 @28
|
||||
FlatSB_GetScrollInfo=FlatSB_GetScrollInfo@12 @29
|
||||
FlatSB_GetScrollPos=FlatSB_GetScrollPos@8 @30
|
||||
FlatSB_GetScrollProp=FlatSB_GetScrollProp@12 @31
|
||||
FlatSB_GetScrollRange=FlatSB_GetScrollRange@16 @32
|
||||
FlatSB_SetScrollInfo=FlatSB_SetScrollInfo@16 @33
|
||||
FlatSB_SetScrollPos=FlatSB_SetScrollPos@16 @34
|
||||
FlatSB_SetScrollProp=FlatSB_SetScrollProp@16 @35
|
||||
FlatSB_SetScrollRange=FlatSB_SetScrollRange@20 @36
|
||||
FlatSB_ShowScrollBar=FlatSB_ShowScrollBar@12 @37
|
||||
GetMUILanguage=GetMUILanguage@0 @38
|
||||
ImageList_Add=ImageList_Add@12 @39
|
||||
ImageList_AddIcon=ImageList_AddIcon@8 @40
|
||||
ImageList_AddMasked=ImageList_AddMasked@12 @41
|
||||
ImageList_BeginDrag=ImageList_BeginDrag@16 @42
|
||||
ImageList_Copy=ImageList_Copy@20 @43
|
||||
ImageList_Create=ImageList_Create@20 @44
|
||||
ImageList_Destroy=ImageList_Destroy@4 @45
|
||||
ImageList_DragEnter=ImageList_DragEnter@12 @46
|
||||
ImageList_DragLeave=ImageList_DragLeave@4 @47
|
||||
ImageList_DragMove=ImageList_DragMove@8 @48
|
||||
ImageList_DragShowNolock=ImageList_DragShowNolock@4 @49
|
||||
ImageList_Draw=ImageList_Draw@24 @50
|
||||
ImageList_DrawEx=ImageList_DrawEx@40 @51
|
||||
ImageList_DrawIndirect=ImageList_DrawIndirect@4 @52
|
||||
ImageList_Duplicate=ImageList_Duplicate@4 @53
|
||||
ImageList_EndDrag=ImageList_EndDrag@0 @54
|
||||
ImageList_GetBkColor=ImageList_GetBkColor@4 @55
|
||||
ImageList_GetDragImage=ImageList_GetDragImage@8 @56
|
||||
ImageList_GetFlags=ImageList_GetFlags@4 @57
|
||||
ImageList_GetIcon=ImageList_GetIcon@12 @58
|
||||
ImageList_GetIconSize=ImageList_GetIconSize@12 @59
|
||||
ImageList_GetImageCount=ImageList_GetImageCount@4 @60
|
||||
ImageList_GetImageInfo=ImageList_GetImageInfo@12 @61
|
||||
ImageList_GetImageRect=ImageList_GetImageRect@12 @62
|
||||
ImageList_LoadImage=ImageList_LoadImageA@28 @63
|
||||
ImageList_LoadImageA=ImageList_LoadImageA@28 @64
|
||||
ImageList_LoadImageW=ImageList_LoadImageW@28 @65
|
||||
ImageList_Merge=ImageList_Merge@24 @66
|
||||
ImageList_Read=ImageList_Read@4 @67
|
||||
ImageList_Remove=ImageList_Remove@8 @68
|
||||
ImageList_Replace=ImageList_Replace@16 @69
|
||||
ImageList_ReplaceIcon=ImageList_ReplaceIcon@12 @70
|
||||
ImageList_SetBkColor=ImageList_SetBkColor@8 @75
|
||||
ImageList_SetDragCursorImage=ImageList_SetDragCursorImage@16 @76
|
||||
ImageList_SetFilter=ImageList_SetFilter@12 @77
|
||||
ImageList_SetFlags=ImageList_SetFlags@8 @78
|
||||
ImageList_SetIconSize=ImageList_SetIconSize@12 @79
|
||||
ImageList_SetImageCount=ImageList_SetImageCount@8 @80
|
||||
ImageList_SetOverlayImage=ImageList_SetOverlayImage@12 @81
|
||||
ImageList_Write=ImageList_Write@8 @82
|
||||
InitCommonControlsEx=InitCommonControlsEx@4 @83
|
||||
InitMUILanguage=InitMUILanguage@4 @84
|
||||
InitializeFlatSB=InitializeFlatSB@4 @85
|
||||
PropertySheet=PropertySheetA@4 @86
|
||||
PropertySheetA=PropertySheetA@4 @87
|
||||
PropertySheetW=PropertySheetW@4 @88
|
||||
UninitializeFlatSB=UninitializeFlatSB@4 @89
|
||||
_TrackMouseEvent=_TrackMouseEvent@4 @90
|
|
@ -177,57 +177,4 @@ BOOL WINAPI DPA_Merge (const HDPA, const HDPA, DWORD, PFNDPACOMPARE, PFNDPAMERGE
|
|||
|
||||
#define DPA_GetPtrCount(hdpa) (*(INT*)(hdpa))
|
||||
|
||||
/*
|
||||
* The following is ReactOS specific, present in Wine's commctrl.h
|
||||
*/
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#define TBSTYLE_EX_UNDOC1 0x04
|
||||
|
||||
/* Undocumented messages in Toolbar */
|
||||
#define TB_UNKWN45D (WM_USER+93)
|
||||
#define TB_UNKWN45E (WM_USER+94)
|
||||
#define TB_UNKWN460 (WM_USER+96)
|
||||
#define TB_UNKWN463 (WM_USER+99)
|
||||
#define TB_UNKWN464 (WM_USER+100)
|
||||
|
||||
#define FLATSB_CLASSA "flatsb_class32"
|
||||
|
||||
/* FIXME: Rebar definition hack, should be patched in Wine */
|
||||
#undef RB_GETBANDINFO
|
||||
#define RB_GETBANDINFO (WM_USER+5) /* just for compatibility */
|
||||
|
||||
#define Header_GetItemA(w,i,d) (BOOL)SendMessageA((w),HDM_GETITEMA,(WPARAM)(i),(LPARAM)(HDITEMA*)(d))
|
||||
#define Header_GetItemW(w,i,d) (BOOL)SendMessageW((w),HDM_GETITEMW,(WPARAM)(i),(LPARAM)(HDITEMW*)(d))
|
||||
#define Header_SetItemA(w,i,d) (BOOL)SendMessageA((w),HDM_SETITEMA,(WPARAM)(i),(LPARAM)(const HDITEMA*)(d))
|
||||
#define Header_SetItemW(w,i,d) (BOOL)SendMessageW((w),HDM_SETITEMW,(WPARAM)(i),(LPARAM)(const HDITEMW*)(d))
|
||||
#define ListView_FindItemA(w,p,i) (INT)SendMessageA((w),LVM_FINDITEMA,(WPARAM)(p),(LPARAM)(LVFINDINFOA*)(i))
|
||||
#define ListView_FindItemW(w,p,i) (INT)SendMessageW((w),LVM_FINDITEMW,(WPARAM)(p),(LPARAM)(LVFINDINFOW*)(i))
|
||||
|
||||
/* Property sheet Wizard 97 styles */
|
||||
#define PSH_WIZARD97_OLD 0x2000
|
||||
#define PSH_WIZARD97_NEW 0x1000000
|
||||
|
||||
/* FIXME: Submit to W32API */
|
||||
#ifndef HDM_SETBITMAPMARGIN
|
||||
#define HDM_SETBITMAPMARGIN (HDM_FIRST+20)
|
||||
#endif
|
||||
#ifndef HDM_GETBITMAPMARGIN
|
||||
#define HDM_GETBITMAPMARGIN (HDM_FIRST+21)
|
||||
#endif
|
||||
#ifndef RBBS_USECHEVRON
|
||||
#define RBBS_USECHEVRON 0x00000200
|
||||
#endif
|
||||
#ifndef RBHT_CHEVRON
|
||||
#define RBHT_CHEVRON 0x0008
|
||||
#endif
|
||||
#ifndef RB_PUSHCHEVRON
|
||||
#define RB_PUSHCHEVRON (WM_USER+43)
|
||||
#endif
|
||||
#ifndef RBN_CHEVRONPUSHED
|
||||
#define RBN_CHEVRONPUSHED (RBN_FIRST-10)
|
||||
#endif
|
||||
|
||||
#endif /* __REACTOS__ */
|
||||
|
||||
#endif /* __WINE_COMCTL32_H */
|
||||
|
|
|
@ -1,45 +0,0 @@
|
|||
/*
|
||||
* FIXME:
|
||||
* Can't use Wine's resource script because it doesn't work with windres.
|
||||
*/
|
||||
|
||||
/*#include "rsrc.rc"*/
|
||||
|
||||
#include <windows.h>
|
||||
#include "comctl32.h"
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
||||
#include "wine/wine_common_ver.rc"
|
||||
|
||||
IDB_STD_SMALL BITMAP "res/idb_std_small.bmp"
|
||||
IDB_STD_LARGE BITMAP "res/idb_std_large.bmp"
|
||||
IDB_VIEW_SMALL BITMAP "res/idb_view_small.bmp"
|
||||
IDB_VIEW_LARGE BITMAP "res/idb_view_large.bmp"
|
||||
IDB_HIST_SMALL BITMAP "res/idb_hist_small.bmp"
|
||||
IDB_HIST_LARGE BITMAP "res/idb_hist_large.bmp"
|
||||
IDC_DIVIDER CURSOR "res/idc_divider.cur"
|
||||
IDC_DIVIDEROPEN CURSOR "res/idc_divideropen.cur"
|
||||
IDI_DRAGARROW ICON "res/idi_dragarrow.ico"
|
||||
|
||||
/*
|
||||
* Everything specific to any language goes
|
||||
* in one of the specific files.
|
||||
* Note that you can and may override resources
|
||||
* which also have a neutral version. This is to
|
||||
* get localized bitmaps for example.
|
||||
*/
|
||||
|
||||
#include "res/comctl_En.rc"
|
||||
#include "res/comctl_Cn.rc"
|
||||
#include "res/comctl_De.rc"
|
||||
#include "res/comctl_Es.rc"
|
||||
#include "res/comctl_Fr.rc"
|
||||
#include "res/comctl_It.rc"
|
||||
#include "res/comctl_Ja.rc"
|
||||
#include "res/comctl_Ko.rc"
|
||||
#include "res/comctl_Nl.rc"
|
||||
#include "res/comctl_Pl.rc"
|
||||
#include "res/comctl_Pt.rc"
|
||||
#include "res/comctl_Ru.rc"
|
||||
#include "res/comctl_Si.rc"
|
188
reactos/lib/comctl32/comctl32.spec
Normal file
|
@ -0,0 +1,188 @@
|
|||
# Functions exported by the Win95 comctl32.dll
|
||||
# (these need to have these exact ordinals, because some win95 dlls
|
||||
# import comctl32.dll by ordinal)
|
||||
# This list was created from a comctl32.dll v5.81 (IE5.01).
|
||||
|
||||
2 stdcall MenuHelp(long long long long long long ptr)
|
||||
3 stdcall ShowHideMenuCtl(long long ptr)
|
||||
4 stdcall GetEffectiveClientRect(long long long)
|
||||
5 stdcall DrawStatusTextA(long ptr str long)
|
||||
6 stdcall CreateStatusWindowA(long str long long)
|
||||
7 stdcall CreateToolbar(long long long long long long ptr long)
|
||||
8 stdcall CreateMappedBitmap(long long long ptr long)
|
||||
9 stdcall -noname DPA_LoadStream(ptr ptr ptr long)
|
||||
10 stdcall -noname DPA_SaveStream(ptr ptr ptr long)
|
||||
11 stdcall -noname DPA_Merge(ptr ptr long ptr ptr long)
|
||||
#12 stub Cctl1632_ThunkData32
|
||||
13 stdcall MakeDragList(long)
|
||||
14 stdcall LBItemFromPt(long long long long)
|
||||
15 stdcall DrawInsert(long long long)
|
||||
16 stdcall CreateUpDownControl(long long long long long long long long long long long long)
|
||||
17 stdcall InitCommonControls()
|
||||
71 stdcall -noname Alloc(long)
|
||||
72 stdcall -noname ReAlloc(ptr long)
|
||||
73 stdcall -noname Free(ptr)
|
||||
74 stdcall -noname GetSize(ptr)
|
||||
151 stdcall -noname CreateMRUListA(ptr)
|
||||
152 stdcall -noname FreeMRUList(long)
|
||||
153 stdcall -noname AddMRUStringA(long str)
|
||||
154 stdcall -noname EnumMRUListA(long long ptr long)
|
||||
155 stdcall -noname FindMRUStringA(long str ptr)
|
||||
156 stdcall -noname DelMRUString(long long)
|
||||
157 stdcall -noname CreateMRUListLazyA(ptr long long long)
|
||||
163 stub -noname CreatePage
|
||||
164 stub -noname CreateProxyPage
|
||||
167 stdcall -noname AddMRUData(long ptr long)
|
||||
169 stdcall -noname FindMRUData(long ptr long ptr)
|
||||
233 stdcall -noname Str_GetPtrA(str str long)
|
||||
234 stdcall -noname Str_SetPtrA(str str)
|
||||
235 stdcall -noname Str_GetPtrW(wstr wstr long)
|
||||
236 stdcall -noname Str_SetPtrW(wstr wstr)
|
||||
320 stdcall -noname DSA_Create(long long)
|
||||
321 stdcall -noname DSA_Destroy(ptr)
|
||||
322 stdcall -noname DSA_GetItem(ptr long long)
|
||||
323 stdcall -noname DSA_GetItemPtr(ptr long)
|
||||
324 stdcall -noname DSA_InsertItem(ptr long long)
|
||||
325 stdcall -noname DSA_SetItem (ptr long long)
|
||||
326 stdcall -noname DSA_DeleteItem(ptr long)
|
||||
327 stdcall -noname DSA_DeleteAllItems(ptr)
|
||||
328 stdcall -noname DPA_Create(long)
|
||||
329 stdcall -noname DPA_Destroy(ptr)
|
||||
330 stdcall -noname DPA_Grow(ptr long)
|
||||
331 stdcall -noname DPA_Clone(ptr ptr)
|
||||
332 stdcall -noname DPA_GetPtr(ptr long)
|
||||
333 stdcall -noname DPA_GetPtrIndex(ptr ptr)
|
||||
334 stdcall -noname DPA_InsertPtr(ptr long ptr)
|
||||
335 stdcall -noname DPA_SetPtr(ptr long ptr)
|
||||
336 stdcall -noname DPA_DeletePtr(ptr long)
|
||||
337 stdcall -noname DPA_DeleteAllPtrs(ptr)
|
||||
338 stdcall -noname DPA_Sort(ptr ptr long)
|
||||
339 stdcall -noname DPA_Search(ptr ptr long ptr long long)
|
||||
340 stdcall -noname DPA_CreateEx(long long)
|
||||
341 stdcall -noname SendNotify(long long long ptr)
|
||||
342 stdcall -noname SendNotifyEx(long long long ptr long)
|
||||
350 stdcall -noname StrChrA(str str)
|
||||
351 stdcall -noname StrRChrA(str str long)
|
||||
352 stdcall -noname StrCmpNA(str str long)
|
||||
353 stdcall -noname StrCmpNIA(str str long)
|
||||
354 stdcall -noname StrStrA(str str)
|
||||
355 stdcall -noname StrStrIA(str str)
|
||||
356 stdcall -noname StrCSpnA(str str)
|
||||
357 stdcall -noname StrToIntA(str)
|
||||
358 stdcall -noname StrChrW(wstr long)
|
||||
359 stdcall -noname StrRChrW(wstr wstr long)
|
||||
360 stdcall -noname StrCmpNW(wstr wstr long)
|
||||
361 stdcall -noname StrCmpNIW(wstr wstr long)
|
||||
362 stdcall -noname StrStrW(wstr wstr)
|
||||
363 stdcall -noname StrStrIW(wstr wstr)
|
||||
364 stdcall -noname StrSpnW(wstr wstr)
|
||||
365 stdcall -noname StrToIntW(wstr)
|
||||
366 stub -noname StrChrIA
|
||||
367 stub -noname StrChrIW
|
||||
368 stub -noname StrRChrIA
|
||||
369 stub -noname StrRChrIW
|
||||
372 stub -noname StrRStrIA
|
||||
373 stub -noname StrRStrIW
|
||||
374 stub -noname StrCSpnIA
|
||||
375 stub -noname StrCSpnIW
|
||||
376 stub -noname IntlStrEqWorkerA
|
||||
377 stub -noname IntlStrEqWorkerW
|
||||
382 stdcall -noname SmoothScrollWindow(ptr)
|
||||
383 stub -noname DoReaderMode
|
||||
384 stub -noname SetPathWordBreakProc
|
||||
385 stdcall -noname DPA_EnumCallback(long long long)
|
||||
386 stdcall -noname DPA_DestroyCallback(ptr ptr long)
|
||||
387 stdcall -noname DSA_EnumCallback(ptr ptr long)
|
||||
388 stdcall -noname DSA_DestroyCallback(ptr ptr long)
|
||||
389 stub -noname SHGetProcessDword
|
||||
390 stub -noname ImageList_SetColorTable
|
||||
400 stdcall -noname CreateMRUListW(ptr)
|
||||
401 stdcall -noname AddMRUStringW(long wstr)
|
||||
402 stdcall -noname FindMRUStringW(long wstr ptr)
|
||||
403 stdcall -noname EnumMRUListW(long long ptr long)
|
||||
404 stdcall -noname CreateMRUListLazyW(ptr long long long)
|
||||
410 stdcall SetWindowSubclass(long ptr long long)
|
||||
411 stdcall GetWindowSubclass(long ptr long ptr)
|
||||
412 stdcall RemoveWindowSubclass(long ptr long)
|
||||
413 stdcall DefSubclassProc(long long long long)
|
||||
414 stub -noname MirrorIcon
|
||||
415 stdcall -noname DrawTextWrap(long long long long long)
|
||||
416 stub -noname DrawTextExPrivWrap
|
||||
417 stdcall -noname ExtTextOutWrap(long long long long ptr wstr long ptr)
|
||||
418 stub -noname GetCharWidthWrap
|
||||
419 stdcall -noname GetTextExtentPointWrap(long long long long)
|
||||
420 stub -noname GetTextExtentPoint32Wrap
|
||||
421 stub -noname TextOutWrap
|
||||
|
||||
# Functions imported by name
|
||||
|
||||
@ stdcall CreatePropertySheetPage(ptr) CreatePropertySheetPageA
|
||||
@ stdcall CreatePropertySheetPageA(ptr)
|
||||
@ stdcall CreatePropertySheetPageW(ptr)
|
||||
@ stdcall CreateStatusWindow(long str long long) CreateStatusWindowA
|
||||
@ stdcall CreateStatusWindowW(long wstr long long)
|
||||
@ stdcall CreateToolbarEx(long long long long long long ptr long long long long long long)
|
||||
@ stdcall DestroyPropertySheetPage(long)
|
||||
@ stdcall DllGetVersion(ptr) COMCTL32_DllGetVersion
|
||||
@ stdcall DllInstall(long ptr) COMCTL32_DllInstall
|
||||
@ stdcall DrawStatusText(long ptr ptr long) DrawStatusTextA
|
||||
@ stdcall DrawStatusTextW(long ptr wstr long)
|
||||
@ stdcall FlatSB_EnableScrollBar (long long long)
|
||||
@ stdcall FlatSB_GetScrollInfo (long long ptr)
|
||||
@ stdcall FlatSB_GetScrollPos (long long)
|
||||
@ stdcall FlatSB_GetScrollProp (long long ptr)
|
||||
@ stdcall FlatSB_GetScrollRange (long long ptr ptr)
|
||||
@ stdcall FlatSB_SetScrollInfo (long long ptr long)
|
||||
@ stdcall FlatSB_SetScrollPos (long long long long)
|
||||
@ stdcall FlatSB_SetScrollProp (long long long long)
|
||||
@ stdcall FlatSB_SetScrollRange (long long long long long)
|
||||
@ stdcall FlatSB_ShowScrollBar (long long long)
|
||||
@ stdcall GetMUILanguage()
|
||||
@ stdcall ImageList_Add(ptr long long)
|
||||
@ stdcall ImageList_AddIcon(ptr long)
|
||||
@ stdcall ImageList_AddMasked(ptr long long)
|
||||
@ stdcall ImageList_BeginDrag(ptr long long long)
|
||||
@ stdcall ImageList_Copy(ptr long ptr long long)
|
||||
@ stdcall ImageList_Create(long long long long long)
|
||||
@ stdcall ImageList_Destroy(ptr)
|
||||
@ stdcall ImageList_DragEnter(long long long)
|
||||
@ stdcall ImageList_DragLeave(long)
|
||||
@ stdcall ImageList_DragMove(long long)
|
||||
@ stdcall ImageList_DragShowNolock(long)
|
||||
@ stdcall ImageList_Draw(ptr long long long long long)
|
||||
@ stdcall ImageList_DrawEx(ptr long long long long long long long long long)
|
||||
@ stdcall ImageList_DrawIndirect(ptr)
|
||||
@ stdcall ImageList_Duplicate(ptr)
|
||||
@ stdcall ImageList_EndDrag()
|
||||
@ stdcall ImageList_GetBkColor(ptr)
|
||||
@ stdcall ImageList_GetDragImage(ptr ptr)
|
||||
@ stdcall ImageList_GetFlags(ptr)
|
||||
@ stdcall ImageList_GetIcon(ptr long long)
|
||||
@ stdcall ImageList_GetIconSize(ptr ptr ptr)
|
||||
@ stdcall ImageList_GetImageCount(ptr)
|
||||
@ stdcall ImageList_GetImageInfo(ptr long ptr)
|
||||
@ stdcall ImageList_GetImageRect(ptr long ptr)
|
||||
@ stdcall ImageList_LoadImage(long str long long long long long) ImageList_LoadImageA
|
||||
@ stdcall ImageList_LoadImageA(long str long long long long long)
|
||||
@ stdcall ImageList_LoadImageW(long wstr long long long long long)
|
||||
@ stdcall ImageList_Merge(ptr long ptr long long long)
|
||||
@ stdcall ImageList_Read(ptr)
|
||||
@ stdcall ImageList_Remove(ptr long)
|
||||
@ stdcall ImageList_Replace(ptr long long long)
|
||||
@ stdcall ImageList_ReplaceIcon(ptr long long)
|
||||
@ stdcall ImageList_SetBkColor(ptr long)
|
||||
@ stdcall ImageList_SetDragCursorImage(ptr long long long)
|
||||
@ stdcall ImageList_SetFilter(ptr long long)
|
||||
@ stdcall ImageList_SetFlags(ptr long)
|
||||
@ stdcall ImageList_SetIconSize(ptr long long)
|
||||
@ stdcall ImageList_SetImageCount(ptr long)
|
||||
@ stdcall ImageList_SetOverlayImage(ptr long long)
|
||||
@ stdcall ImageList_Write(ptr ptr)
|
||||
@ stdcall InitCommonControlsEx(ptr)
|
||||
@ stdcall InitMUILanguage(long)
|
||||
@ stdcall InitializeFlatSB(long)
|
||||
@ stdcall PropertySheet(ptr) PropertySheetA
|
||||
@ stdcall PropertySheetA(ptr)
|
||||
@ stdcall PropertySheetW(ptr)
|
||||
@ stdcall UninitializeFlatSB(long)
|
||||
@ stdcall _TrackMouseEvent(ptr)
|
86
reactos/lib/comctl32/comctl_Ja.rc
Normal file
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
* Copyright 2003 Hajime Segawa
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
|
||||
|
||||
IDD_PROPSHEET DIALOG DISCARDABLE 0, 0, 220, 140
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
||||
CAPTION "Properties for "
|
||||
FONT 9, "MS UI Gothic"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "OK", IDOK,4,122,50,14, WS_TABSTOP | WS_GROUP
|
||||
PUSHBUTTON "キャンセル", IDCANCEL,58,122,50,14
|
||||
PUSHBUTTON "適用(&A)", IDC_APPLY_BUTTON,112,122,50,14,WS_DISABLED
|
||||
PUSHBUTTON "ヘルプ", IDHELP,166,122,50,14,WS_TABSTOP|WS_GROUP
|
||||
CONTROL "Tab", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS|WS_GROUP|WS_TABSTOP,4,4,212,114
|
||||
END
|
||||
|
||||
|
||||
IDD_WIZARD DIALOG DISCARDABLE 0, 0, 290, 159
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
||||
CAPTION "Wizard"
|
||||
FONT 9, "MS UI Gothic"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "完了", IDC_FINISH_BUTTON,121,138,50,14
|
||||
DEFPUSHBUTTON "進む(&N) >", IDC_NEXT_BUTTON,121,138,50,14
|
||||
PUSHBUTTON "< 戻る(&B)", IDC_BACK_BUTTON,71,138,50,14
|
||||
PUSHBUTTON "キャンセル", IDCANCEL,178,138,50,14
|
||||
PUSHBUTTON "ヘルプ", IDHELP,235,138,50,14,WS_GROUP
|
||||
LTEXT "", IDC_SUNKEN_LINE,7,129,278,1,SS_SUNKEN
|
||||
CONTROL "Tab", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS | WS_DISABLED,7,7,258,5
|
||||
END
|
||||
|
||||
|
||||
IDD_TBCUSTOMIZE DIALOG DISCARDABLE 10, 20, 357, 125
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||
CAPTION "Customize Toolbar"
|
||||
FONT 9, "MS UI Gothic"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "閉じる(&C)", IDCANCEL,308,6,44,14
|
||||
PUSHBUTTON "リセット(R&)", IDC_RESET_BTN,308,23,44,14
|
||||
PUSHBUTTON "ヘルプ(&H)", IDC_HELP_BTN,308,40,44,14
|
||||
PUSHBUTTON "上へ (&U)", IDC_MOVEUP_BTN,308,74,44,14
|
||||
PUSHBUTTON "下へ (&D)", IDC_MOVEDN_BTN,308,91,44,14
|
||||
LTEXT "A&vailable buttons:", -1,4,5,84,10
|
||||
LISTBOX IDC_AVAILBTN_LBOX,4,17,120,100, LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
|
||||
PUSHBUTTON "追加(&A) ->", IDOK, 131, 42, 44, 14
|
||||
PUSHBUTTON "<- 削除(&R)", IDC_REMOVE_BTN,131,62,44,14
|
||||
LTEXT "&Toolbar buttons:", -1,182,5,78,10
|
||||
LISTBOX IDC_TOOLBARBTN_LBOX, 182,17,120,100,LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
|
||||
END
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDS_CLOSE "Close"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDM_TODAY "Today:"
|
||||
IDM_GOTODAY "Go to today"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDS_SEPARATOR "Separator"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
HKY_NONE "None"
|
||||
}
|
|
@ -1,86 +1,86 @@
|
|||
/*
|
||||
* Copyright 2003 Filip Navara
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
|
||||
|
||||
IDD_PROPSHEET DIALOG DISCARDABLE 0, 0, 220, 140
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
||||
CAPTION "Vlastnosti pro "
|
||||
FONT 8, "MS Sans Serif"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "OK", IDOK,4,122,50,14, WS_TABSTOP | WS_GROUP
|
||||
PUSHBUTTON "Storno", IDCANCEL,58,122,50,14
|
||||
PUSHBUTTON "P&oužít", IDC_APPLY_BUTTON,112,122,50,14,WS_DISABLED
|
||||
PUSHBUTTON "Nápovìda", IDHELP,166,122,50,14,WS_TABSTOP|WS_GROUP
|
||||
CONTROL "Tab", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS|WS_GROUP|WS_TABSTOP,4,4,212,114
|
||||
END
|
||||
|
||||
|
||||
IDD_WIZARD DIALOG DISCARDABLE 0, 0, 290, 159
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
||||
CAPTION "Wizard"
|
||||
FONT 8, "MS Sans Serif"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "Dokonèit", IDC_FINISH_BUTTON,121,138,50,14
|
||||
DEFPUSHBUTTON "&Další >", IDC_NEXT_BUTTON,121,138,50,14
|
||||
PUSHBUTTON "< &Zpìt", IDC_BACK_BUTTON,71,138,50,14
|
||||
PUSHBUTTON "Storno", IDCANCEL,178,138,50,14
|
||||
PUSHBUTTON "Nápovìda", IDHELP,235,138,50,14,WS_GROUP
|
||||
LTEXT "", IDC_SUNKEN_LINE,7,129,278,1,SS_SUNKEN
|
||||
CONTROL "Tab", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS | WS_DISABLED,7,7,258,5
|
||||
END
|
||||
|
||||
|
||||
IDD_TBCUSTOMIZE DIALOG DISCARDABLE 10, 20, 357, 125
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||
CAPTION "Upravit panel nástrojù"
|
||||
FONT 8, "MS Sans Serif"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "&Zavøi", IDCANCEL,308,6,44,14
|
||||
PUSHBUTTON "Pùvod&ní", IDC_RESET_BTN,308,23,44,14
|
||||
PUSHBUTTON "Nápo&vìda", IDC_HELP_BTN,308,40,44,14
|
||||
PUSHBUTTON "Na&horu", IDC_MOVEUP_BTN,308,74,44,14
|
||||
PUSHBUTTON "&Dolù", IDC_MOVEDN_BTN,308,91,44,14
|
||||
LTEXT "Tl&aèítka k dispozici:", -1,4,5,84,10
|
||||
LISTBOX IDC_AVAILBTN_LBOX,4,17,120,100, LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
|
||||
PUSHBUTTON "&Pøidat ->", IDOK, 131, 42, 44, 14
|
||||
PUSHBUTTON "<- Ode&brat", IDC_REMOVE_BTN,131,62,44,14
|
||||
LTEXT "&Tlaèítka panelu nástrojù:", -1,182,5,78,10
|
||||
LISTBOX IDC_TOOLBARBTN_LBOX, 182,17,120,100,LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
|
||||
END
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDS_CLOSE "Zavøít"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDM_TODAY "Dnes:"
|
||||
IDM_GOTODAY "Pøesunout na dnešek"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDS_SEPARATOR "Oddìlovaè"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
HKY_NONE "Žádná"
|
||||
}
|
||||
/*
|
||||
* Copyright 2003 Jon Griffiths
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
LANGUAGE LANG_THAI, SUBLANG_DEFAULT
|
||||
|
||||
IDD_PROPSHEET DIALOG DISCARDABLE 0, 0, 220, 140
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
||||
CAPTION "¤Ø³ÊÁºÑµÔ¢Í§ "
|
||||
FONT 8, "MS Sans Serif"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "µ¡Å§", IDOK,4,122,50,14, WS_TABSTOP | WS_GROUP
|
||||
PUSHBUTTON "¡àÅÔ¡", IDCANCEL,58,122,50,14
|
||||
PUSHBUTTON "Áռŷѹ·Õ", IDC_APPLY_BUTTON,112,122,50,14,WS_DISABLED
|
||||
PUSHBUTTON "ªèÇÂàËÅÕÍ", IDHELP,166,122,50,14,WS_TABSTOP|WS_GROUP
|
||||
CONTROL "Tab", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS|WS_GROUP|WS_TABSTOP,4,4,212,114
|
||||
END
|
||||
|
||||
|
||||
IDD_WIZARD DIALOG DISCARDABLE 0, 0, 290, 159
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
||||
CAPTION "Wizard"
|
||||
FONT 8, "MS Sans Serif"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "·íÒãËéàÊÃç¨", IDC_FINISH_BUTTON,121,138,50,14
|
||||
DEFPUSHBUTTON "µèÍä» >", IDC_NEXT_BUTTON,121,138,50,14
|
||||
PUSHBUTTON "< Âé͹¡ÅѺ", IDC_BACK_BUTTON,71,138,50,14
|
||||
PUSHBUTTON "¡àÅÔ¡", IDCANCEL,178,138,50,14
|
||||
PUSHBUTTON "ªèÇÂàËÅÕÍ", IDHELP,235,138,50,14,WS_GROUP
|
||||
LTEXT "", IDC_SUNKEN_LINE,7,129,278,1,SS_SUNKEN
|
||||
CONTROL "Tab", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS | WS_DISABLED,7,7,258,5
|
||||
END
|
||||
|
||||
|
||||
IDD_TBCUSTOMIZE DIALOG DISCARDABLE 10, 20, 357, 125
|
||||
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||
CAPTION "»ÃѺáµè§á¶ºà¤Ã×èͧÁ×Í"
|
||||
FONT 8, "MS Sans Serif"
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "»Ô´", IDCANCEL,308,6,44,14
|
||||
PUSHBUTTON "á¡éÍÍ¡", IDC_RESET_BTN,308,23,44,14
|
||||
PUSHBUTTON "ªèÇÂàËÅÕÍ", IDC_HELP_BTN,308,40,44,14
|
||||
PUSHBUTTON "ÂéÒ¢Öé¹", IDC_MOVEUP_BTN,308,74,44,14
|
||||
PUSHBUTTON "ÂéÒÂŧ", IDC_MOVEDN_BTN,308,91,44,14
|
||||
LTEXT "·ÕàÅ×Í¡ä´é:", -1,4,5,84,10
|
||||
LISTBOX IDC_AVAILBTN_LBOX,4,17,120,100, LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
|
||||
PUSHBUTTON "ºÇ¡ ->", IDOK, 131, 42, 44, 14
|
||||
PUSHBUTTON "<- ¶Í´ÍÍ¡", IDC_REMOVE_BTN,131,62,44,14
|
||||
LTEXT "¡ÒáÃзíÒᶺà¤Ã×èͧÁ×Í:", -1,182,5,78,10
|
||||
LISTBOX IDC_TOOLBARBTN_LBOX, 182,17,120,100,LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
|
||||
END
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDS_CLOSE "»Õ´"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDM_TODAY "Çѹ¹Õé:"
|
||||
IDM_GOTODAY "件֧Çѹ¹Õé"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDS_SEPARATOR "Separator"
|
||||
}
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
HKY_NONE "äÁèÁÕàÅÂ"
|
||||
}
|
|
@ -220,10 +220,8 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|||
COMCTL32_aSubclass = NULL;
|
||||
|
||||
/* destroy private heap */
|
||||
#if 0
|
||||
HeapDestroy (COMCTL32_hHeap);
|
||||
TRACE("Heap destroyed: %p\n", COMCTL32_hHeap);
|
||||
#endif
|
||||
COMCTL32_hHeap = NULL;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
#include "winnls.h"
|
||||
#include "commctrl.h"
|
||||
#include "wine/debug.h"
|
||||
#include "comctl32.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(commctrl);
|
||||
|
||||
|
|
|
@ -553,9 +553,6 @@ ImageList_Create (INT cx, INT cy, UINT flags,
|
|||
|
||||
TRACE("(%d %d 0x%x %d %d)\n", cx, cy, flags, cInitial, cGrow);
|
||||
|
||||
if (flags & ILC_COLOR32)
|
||||
FIXME("ILC_COLOR32 (24 bit color image list with 8 bit alpha channel) is not yet supported\n");
|
||||
|
||||
himl = (HIMAGELIST)Alloc (sizeof(struct _IMAGELIST));
|
||||
if (!himl)
|
||||
return NULL;
|
||||
|
|
|
@ -8765,10 +8765,10 @@ LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
return LISTVIEW_EnsureVisible(infoPtr, (INT)wParam, (BOOL)lParam);
|
||||
|
||||
case LVM_FINDITEMW:
|
||||
return LISTVIEW_FindItemW(infoPtr, (INT)wParam, (LPFINDINFOW)lParam);
|
||||
return LISTVIEW_FindItemW(infoPtr, (INT)wParam, (LPLVFINDINFOW)lParam);
|
||||
|
||||
case LVM_FINDITEMA:
|
||||
return LISTVIEW_FindItemA(infoPtr, (INT)wParam, (LPFINDINFOA)lParam);
|
||||
return LISTVIEW_FindItemA(infoPtr, (INT)wParam, (LPLVFINDINFOA)lParam);
|
||||
|
||||
case LVM_GETBKCOLOR:
|
||||
return infoPtr->clrBk;
|
||||
|
|
|
@ -1,80 +1,9 @@
|
|||
# $Id: makefile,v 1.6 2004/01/02 19:49:45 gvg Exp $
|
||||
|
||||
PATH_TO_TOP = ../..
|
||||
|
||||
TARGET_TYPE = dynlink
|
||||
|
||||
TARGET_NAME = comctl32
|
||||
|
||||
TARGET_CFLAGS = \
|
||||
-Wall \
|
||||
-fno-builtin
|
||||
|
||||
# Compile definitions usage:
|
||||
# __USE_W32API - Compilation with w32api headers
|
||||
# __REACTOS__ - Compilation of Wine sources for ReactOS
|
||||
# _WIN32_IE=0x600 - Internet Explorer 6 compatible defintions
|
||||
# WINVER=0x501 - Windows XP definitions
|
||||
# __need_offsetof - Force definition of macro offsetof in stddef.h
|
||||
#
|
||||
DEFINES = \
|
||||
-D_DISABLE_TIDENTS \
|
||||
-D__USE_W32API \
|
||||
-D__REACTOS__ \
|
||||
-D_WIN32_IE=0x600 \
|
||||
-D_WIN32_WINNT=0x501 \
|
||||
-DWINVER=0x501 \
|
||||
-DCOBJMACROS \
|
||||
-D__need_offsetof
|
||||
|
||||
TARGET_CFLAGS += \
|
||||
$(DEFINES) \
|
||||
-DDCX_USESTYLE=0x10000L \
|
||||
-I$(PATH_TO_TOP)/include/wine \
|
||||
-Wno-unused
|
||||
|
||||
TARGET_RCFLAGS += -D__REACTOS__ -D_WIN32_IE=0x600 -D_WIN32_WINNT=0x501
|
||||
|
||||
TARGET_LFLAGS = -nostartfiles -nostdlib
|
||||
|
||||
TARGET_SDKLIBS = libwine.a
|
||||
|
||||
TARGET_GCCLIBS = gdi32 msvcrt kernel32 user32 advapi32 winmm ole32 ntdll
|
||||
|
||||
TARGET_BASE = 0x76160000
|
||||
|
||||
TARGET_OBJECTS = \
|
||||
animate.o \
|
||||
comboex.o \
|
||||
comctl32undoc.o \
|
||||
commctrl.o \
|
||||
datetime.o \
|
||||
draglist.o \
|
||||
flatsb.o \
|
||||
header.o \
|
||||
hotkey.o \
|
||||
imagelist.o \
|
||||
ipaddress.o \
|
||||
listview.o \
|
||||
monthcal.o \
|
||||
nativefont.o \
|
||||
pager.o \
|
||||
progress.o \
|
||||
propsheet.o \
|
||||
rebar.o \
|
||||
smoothscroll.o \
|
||||
status.o \
|
||||
tab.o \
|
||||
toolbar.o \
|
||||
tooltips.o \
|
||||
trackbar.o \
|
||||
treeview.o \
|
||||
updown.o
|
||||
|
||||
DEP_OBJECTS = $(TARGET_OBJECTS)
|
||||
TARGET_TYPE = winedll
|
||||
|
||||
include $(PATH_TO_TOP)/rules.mak
|
||||
|
||||
include $(TOOLS_PATH)/helper.mk
|
||||
|
||||
include $(TOOLS_PATH)/config.mk
|
||||
|
||||
# include $(TOOLS_PATH)/depend.mk
|
||||
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 326 B |
1076
reactos/lib/comctl32/rsrc.rc
Normal file
|
@ -886,12 +886,10 @@ STATUSBAR_WMCreate (HWND hwnd, LPCREATESTRUCTA lpCreate)
|
|||
|
||||
dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
|
||||
|
||||
#ifndef __REACTOS__
|
||||
/* statusbars on managed windows should not have SIZEGRIP style */
|
||||
if ((dwStyle & SBARS_SIZEGRIP) && lpCreate->hwndParent)
|
||||
if (GetWindowLongW (lpCreate->hwndParent, GWL_EXSTYLE) & WS_EX_MANAGED)
|
||||
SetWindowLongW (hwnd, GWL_STYLE, dwStyle & ~SBARS_SIZEGRIP);
|
||||
#endif
|
||||
|
||||
if ((hdc = GetDC (hwnd))) {
|
||||
TEXTMETRICW tm;
|
||||
|
|
|
@ -1503,7 +1503,7 @@ TRACKBAR_SetFocus (TRACKBAR_INFO *infoPtr, HWND hwndLoseFocus)
|
|||
static LRESULT
|
||||
TRACKBAR_Size (TRACKBAR_INFO *infoPtr, DWORD fwSizeType, INT nWidth, INT nHeight)
|
||||
{
|
||||
TRACKBAR_CalcChannel (infoPtr);
|
||||
TRACKBAR_InitializeThumb (infoPtr);
|
||||
TRACKBAR_AlignBuddies (infoPtr);
|
||||
|
||||
return 0;
|
||||
|
|
119
reactos/lib/comctl32/winehq2ros.patch
Normal file
|
@ -0,0 +1,119 @@
|
|||
Index: Makefile.in
|
||||
===================================================================
|
||||
RCS file: /home/wine/wine/dlls/comctl32/Makefile.in,v
|
||||
retrieving revision 1.32
|
||||
diff -u -r1.32 Makefile.in
|
||||
--- Makefile.in 11 Oct 2003 01:09:20 -0000 1.32
|
||||
+++ Makefile.in 2 Jan 2004 19:07:52 -0000
|
||||
@@ -41,9 +41,14 @@
|
||||
RC_BINARIES = \
|
||||
idb_hist_large.bmp \
|
||||
idb_hist_small.bmp \
|
||||
+ idb_std_small.bmp \
|
||||
idb_std_large.bmp \
|
||||
idb_view_large.bmp \
|
||||
- idb_view_small.bmp
|
||||
+ idb_view_small.bmp \
|
||||
+ idc_divider.cur \
|
||||
+ idc_divideropen.cur \
|
||||
+ idi_dragarrow.ico \
|
||||
+ idt_check.bmp
|
||||
|
||||
SUBDIRS = tests
|
||||
|
||||
Index: rsrc.rc
|
||||
===================================================================
|
||||
RCS file: /home/wine/wine/dlls/comctl32/rsrc.rc,v
|
||||
retrieving revision 1.36
|
||||
diff -u -r1.36 rsrc.rc
|
||||
--- rsrc.rc 12 Dec 2003 05:57:22 -0000 1.36
|
||||
+++ rsrc.rc 2 Jan 2004 19:07:53 -0000
|
||||
@@ -29,8 +29,9 @@
|
||||
|
||||
#include "wine/wine_common_ver.rc"
|
||||
|
||||
-IDT_CHECK BITMAP LOADONCALL DISCARDABLE
|
||||
-{
|
||||
+/* BINRES idt_check.bmp */
|
||||
+IDT_CHECK BITMAP LOADONCALL DISCARDABLE idt_check.bmp
|
||||
+/* {
|
||||
'42 4D 8E 01 00 00 00 00 00 00 5E 00 00 00 28 00'
|
||||
'00 00 1F 00 00 00 10 00 00 00 01 00 04 00 02 00'
|
||||
'00 00 30 01 00 00 01 00 00 00 01 00 00 00 0A 00'
|
||||
@@ -56,10 +57,11 @@
|
||||
'08 99 01 00 01 99 01 00 01 11 01 99 00 00 01 99'
|
||||
'0D 11 02 99 0A 11 02 00 02 11 01 99 00 00 01 99'
|
||||
'0D 11 02 99 0E 11 01 99 00 00 1F 99 00 01'
|
||||
-}
|
||||
+} */
|
||||
|
||||
-IDB_STD_SMALL BITMAP LOADONCALL DISCARDABLE
|
||||
-{
|
||||
+/* BINRES idb_std_small.bmp */
|
||||
+IDB_STD_SMALL BITMAP LOADONCALL DISCARDABLE idb_std_small.bmp
|
||||
+/* {
|
||||
'42 4D 20 07 00 00 00 00 00 00 76 00 00 00 28 00'
|
||||
'00 00 F0 00 00 00 10 00 00 00 01 00 04 00 02 00'
|
||||
'00 00 AA 06 00 00 00 00 00 00 00 00 00 00 00 00'
|
||||
@@ -174,7 +176,7 @@
|
||||
'06 88 02 84 04 44 04 88 02 66 04 88 02 66 12 88'
|
||||
'02 11 06 88 02 86 08 66 02 88 00 00 90 88 08 66'
|
||||
'02 68 2A 88 04 66 14 88 02 18 12 88 00 00 00 01'
|
||||
-}
|
||||
+} */
|
||||
|
||||
/* BINRES idb_std_large.bmp */
|
||||
IDB_STD_LARGE BITMAP LOADONCALL DISCARDABLE idb_std_large.bmp
|
||||
@@ -969,8 +971,9 @@
|
||||
} */
|
||||
|
||||
|
||||
-IDC_DIVIDER CURSOR LOADONCALL DISCARDABLE
|
||||
-{
|
||||
+/* BINRES idc_divider.cur */
|
||||
+IDC_DIVIDER CURSOR LOADONCALL DISCARDABLE idc_divider.cur
|
||||
+/* {
|
||||
'00 00 02 00 01 00 20 20 00 00 09 00 09 00 30 01'
|
||||
'00 00 16 00 00 00 28 00 00 00 20 00 00 00 40 00'
|
||||
'00 00 01 00 01 00 00 00 00 00 80 00 00 00 00 00'
|
||||
@@ -992,11 +995,12 @@
|
||||
'3F FF 00 00 3F FF 80 00 7F FF C6 18 FF FF E6 19'
|
||||
'FF FF FE 1F FF FF FE 1F FF FF FE 1F FF FF FE 1F'
|
||||
'FF FF FE 1F FF FF'
|
||||
-}
|
||||
+} */
|
||||
|
||||
|
||||
-IDC_DIVIDEROPEN CURSOR LOADONCALL DISCARDABLE
|
||||
-{
|
||||
+/* BINRES idc_divideropen.cur */
|
||||
+IDC_DIVIDEROPEN CURSOR LOADONCALL DISCARDABLE idc_divideropen.cur
|
||||
+/* {
|
||||
'00 00 02 00 01 00 20 20 00 00 09 00 09 00 30 01'
|
||||
'00 00 16 00 00 00 28 00 00 00 20 00 00 00 40 00'
|
||||
'00 00 01 00 01 00 00 00 00 00 80 00 00 00 00 00'
|
||||
@@ -1018,11 +1022,12 @@
|
||||
'3F FF 00 00 3F FF 80 00 7F FF C4 08 FF FF E4 09'
|
||||
'FF FF FC 0F FF FF FC 0F FF FF FC 0F FF FF FC 0F'
|
||||
'FF FF FC 0F FF FF'
|
||||
-}
|
||||
+} */
|
||||
|
||||
|
||||
-IDI_DRAGARROW ICON LOADONCALL DISCARDABLE
|
||||
-{
|
||||
+/* BINRES idi_dragarrow.ico */
|
||||
+IDI_DRAGARROW ICON LOADONCALL DISCARDABLE idi_dragarrow.ico
|
||||
+/* {
|
||||
'00 00 01 00 01 00 20 20 02 00 00 00 00 00 30 01'
|
||||
'00 00 16 00 00 00 28 00 00 00 20 00 00 00 40 00'
|
||||
'00 00 01 00 01 00 00 00 00 00 00 01 00 00 00 00'
|
||||
@@ -1044,7 +1049,7 @@
|
||||
'FF FF F0 03 FF FF F0 01 FF FF F0 03 FF FF F0 07'
|
||||
'FF FF F0 8F FF FF F0 9F FF FF FF FF FF FF FF FF'
|
||||
'FF FF FF FF FF FF'
|
||||
-}
|
||||
+} */
|
||||
|
||||
|
||||
/*
|
|
@ -199,3 +199,11 @@ const char *wine_dbgstr_guid(const GUID *id)
|
|||
}
|
||||
return str;
|
||||
}
|
||||
|
||||
/* varargs wrapper for __wine_dbg_vsprintf */
|
||||
const char *wine_dbg_sprintf( const char *format, ... )
|
||||
{
|
||||
static char fixme[] = "FIXME: implement wine_dbg_sprintf";
|
||||
|
||||
return fixme;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
*.coff
|
||||
*.dll
|
||||
*.o
|
||||
*.d
|
||||
*.a
|
||||
*.o
|
||||
*.sym
|
||||
*.map
|
||||
*.tmp
|
||||
Makefile.ros
|
||||
drag_copy.cur
|
||||
drag_link.cur
|
||||
drag_move.cur
|
||||
nodrop.cur
|
||||
ole32.spec.def
|
||||
|
|
60
reactos/lib/ole32/Makefile.in
Normal file
|
@ -0,0 +1,60 @@
|
|||
EXTRADEFS = -D_OLE32_ -DCOM_NO_WINDOWS_H
|
||||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
MODULE = ole32.dll
|
||||
IMPORTS = advapi32 user32 gdi32 rpcrt4 kernel32 ntdll
|
||||
ALTNAMES = ole2.dll ole2nls.dll ole2conv.dll ole2prox.dll ole2thk.dll storage.dll compobj.dll
|
||||
EXTRALIBS = $(LIBUUID)
|
||||
|
||||
SPEC_SRCS16 = $(ALTNAMES:.dll=.spec)
|
||||
|
||||
C_SRCS = \
|
||||
antimoniker.c \
|
||||
bindctx.c \
|
||||
clipboard.c \
|
||||
compobj.c \
|
||||
compositemoniker.c \
|
||||
datacache.c \
|
||||
defaulthandler.c \
|
||||
errorinfo.c \
|
||||
filemoniker.c \
|
||||
ftmarshal.c \
|
||||
git.c \
|
||||
hglobalstream.c \
|
||||
ifs.c \
|
||||
itemmoniker.c \
|
||||
marshal.c \
|
||||
memlockbytes.c \
|
||||
moniker.c \
|
||||
ole2.c \
|
||||
ole2stubs.c \
|
||||
ole2impl.c \
|
||||
ole32_main.c \
|
||||
oleobj.c \
|
||||
oleproxy.c \
|
||||
regsvr.c \
|
||||
rpc.c \
|
||||
stg_bigblockfile.c \
|
||||
stg_stream.c \
|
||||
storage32.c
|
||||
|
||||
C_SRCS16 = \
|
||||
memlockbytes16.c \
|
||||
ole16.c \
|
||||
ole2_16.c \
|
||||
ole2nls.c \
|
||||
storage.c
|
||||
|
||||
RC_SRCS = ole32res.rc version.rc
|
||||
RC_BINSRC = ole32res.rc
|
||||
RC_BINARIES = \
|
||||
drag_copy.cur \
|
||||
drag_link.cur \
|
||||
drag_move.cur \
|
||||
nodrop.cur
|
||||
|
||||
@MAKE_DLL_RULES@
|
||||
|
||||
### Dependencies:
|
21
reactos/lib/ole32/Makefile.ros-template
Normal file
|
@ -0,0 +1,21 @@
|
|||
# $Id: Makefile.ros-template,v 1.1 2004/01/02 19:49:45 gvg Exp $
|
||||
|
||||
TARGET_NAME = ole32
|
||||
|
||||
TARGET_OBJECTS = @C_SRCS@
|
||||
|
||||
TARGET_CFLAGS = @EXTRADEFS@
|
||||
|
||||
TARGET_SDKLIBS = @IMPORTS@ libwine.a wine_uuid.a ntdll.a
|
||||
|
||||
TARGET_BASE = 0x77a50000
|
||||
|
||||
TARGET_RC_SRCS = @RC_SRCS@
|
||||
TARGET_RC_BINSRC = @RC_BINSRC@
|
||||
TARGET_RC_BINARIES = @RC_BINARIES@
|
||||
|
||||
default: all
|
||||
|
||||
DEP_OBJECTS = $(TARGET_OBJECTS)
|
||||
|
||||
include $(TOOLS_PATH)/depend.mk
|
|
@ -22,9 +22,6 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#define NONAMELESSUNION
|
||||
#define NONAMELESSSTRUCT
|
||||
#include "windef.h"
|
||||
|
|
|
@ -21,9 +21,6 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#include "winerror.h"
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
|
|
|
@ -62,9 +62,6 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#define NONAMELESSUNION
|
||||
#define NONAMELESSSTRUCT
|
||||
#include "windef.h"
|
||||
|
|
|
@ -30,16 +30,10 @@
|
|||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#define NONAMELESSUNION
|
||||
#define NONAMELESSSTRUCT
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#ifdef __REACTOS__
|
||||
#include "wingdi.h"
|
||||
#endif
|
||||
#include "winuser.h"
|
||||
#include "objbase.h"
|
||||
#include "ole2.h"
|
||||
|
@ -47,9 +41,7 @@
|
|||
#include "rpc.h"
|
||||
#include "winerror.h"
|
||||
#include "winreg.h"
|
||||
#ifndef __REACTOS__
|
||||
#include "wownt32.h"
|
||||
#endif
|
||||
#include "wine/unicode.h"
|
||||
#include "objbase.h"
|
||||
#include "ole32_main.h"
|
||||
|
@ -573,11 +565,7 @@ HRESULT WINAPI __CLSIDFromStringA(
|
|||
/*****************************************************************************/
|
||||
|
||||
HRESULT WINAPI CLSIDFromString(
|
||||
#ifdef __REACTOS__
|
||||
LPOLESTR idstr, /* [in] string representation of GUID */
|
||||
#else
|
||||
LPCOLESTR idstr, /* [in] string representation of GUID */
|
||||
#endif
|
||||
CLSID *id ) /* [out] GUID represented by above string */
|
||||
{
|
||||
char xid[40];
|
||||
|
@ -744,7 +732,6 @@ HRESULT WINAPI ProgIDFromCLSID(
|
|||
* RETURNS
|
||||
* riid associated with the progid
|
||||
*/
|
||||
#ifndef __REACTOS__
|
||||
HRESULT WINAPI CLSIDFromProgID16(
|
||||
LPCOLESTR16 progid, /* [in] program id as found in registry */
|
||||
LPCLSID riid /* [out] associated CLSID */
|
||||
|
@ -769,7 +756,6 @@ HRESULT WINAPI CLSIDFromProgID16(
|
|||
RegCloseKey(xhkey);
|
||||
return __CLSIDFromStringA(buf2,riid);
|
||||
}
|
||||
#endif
|
||||
|
||||
/******************************************************************************
|
||||
* CLSIDFromProgID [OLE32.@]
|
||||
|
|
218
reactos/lib/ole32/compobj.spec
Normal file
|
@ -0,0 +1,218 @@
|
|||
1 pascal CoBuildVersion() CoBuildVersion
|
||||
2 pascal CoInitialize(long) CoInitialize16
|
||||
3 pascal CoUninitialize() CoUninitialize16
|
||||
4 pascal CoGetMalloc(long ptr) CoGetMalloc16
|
||||
5 pascal CoRegisterClassObject(ptr ptr long long ptr) CoRegisterClassObject16
|
||||
6 pascal CoRevokeClassObject(long) CoRevokeClassObject16
|
||||
7 pascal CoGetClassObject(ptr long ptr ptr ptr) CoGetClassObject
|
||||
8 stub COMARSHALINTERFACE
|
||||
9 stub COUNMARSHALINTERFACE
|
||||
10 stub COLOADLIBRARY
|
||||
11 stub COFREELIBRARY
|
||||
12 stub COFREEALLLIBRARIES
|
||||
13 pascal CoCreateInstance(ptr ptr long ptr ptr) CoCreateInstance
|
||||
14 stub STRINGFROMIID
|
||||
15 pascal CoDisconnectObject(ptr long) CoDisconnectObject
|
||||
16 stub CORELEASEMARSHALDATA
|
||||
17 pascal -ret16 CoFreeUnusedLibraries() CoFreeUnusedLibraries
|
||||
18 pascal -ret16 IsEqualGUID(ptr ptr) IsEqualGUID16
|
||||
19 pascal StringFromCLSID(ptr ptr) StringFromCLSID16
|
||||
20 pascal CLSIDFromString(str ptr) CLSIDFromString16
|
||||
21 stub ISVALIDPTRIN
|
||||
22 stub ISVALIDPTROUT
|
||||
23 stub ISVALIDINTERFACE
|
||||
24 stub ISVALIDIID
|
||||
25 stub RESULTFROMSCODE
|
||||
26 stub GETSCODE
|
||||
27 pascal CoRegisterMessageFilter(ptr ptr) CoRegisterMessageFilter16
|
||||
28 stub COISHANDLERCONNECTED
|
||||
29 stub SHRADDREF
|
||||
30 pascal -ret16 CoFileTimeToDosDateTime(ptr ptr ptr) CoFileTimeToDosDateTime16
|
||||
31 pascal -ret16 CoDosDateTimeToFileTime(word word ptr) CoDosDateTimeToFileTime16
|
||||
32 stub COMARSHALHRESULT
|
||||
33 stub COUNMARSHALHRESULT
|
||||
34 pascal CoGetCurrentProcess() CoGetCurrentProcess
|
||||
35 stub SHRCREATE
|
||||
36 stub COISOLE1CLASS
|
||||
37 stub _GUID_NULL
|
||||
38 stub _IID_IUNKNOWN
|
||||
39 stub _IID_ICLASSFACTORY
|
||||
40 stub _IID_IMALLOC
|
||||
41 stub _IID_IMARSHAL
|
||||
42 stub _IID_IRPCCHANNEL
|
||||
43 stub _IID_IRPCSTUB
|
||||
44 stub _IID_ISTUBMANAGER
|
||||
45 stub _IID_IRPCPROXY
|
||||
46 stub _IID_IPROXYMANAGER
|
||||
47 stub _IID_IPSFACTORY
|
||||
48 stub _IID_ILOCKBYTES
|
||||
49 stub _IID_ISTORAGE
|
||||
50 stub _IID_ISTREAM
|
||||
51 stub _IID_IENUMSTATSTG
|
||||
52 stub _IID_IBINDCTX
|
||||
53 stub _IID_IMONIKER
|
||||
54 stub _IID_IRUNNINGOBJECTTABLE
|
||||
55 stub _IID_IINTERNALMONIKER
|
||||
56 stub _IID_IROOTSTORAGE
|
||||
57 stub _IID_IDFRESERVED1
|
||||
58 stub _IID_IDFRESERVED2
|
||||
59 stub _IID_IDFRESERVED3
|
||||
60 stub _IID_IMESSAGEFILTER
|
||||
61 pascal CLSIDFromProgID(str ptr) CLSIDFromProgID16
|
||||
62 pascal ProgIDFromCLSID(ptr ptr) ProgIDFromCLSID16
|
||||
63 pascal CoLockObjectExternal(segptr word word) CoLockObjectExternal16
|
||||
64 stub _CLSID_STDMARSHAL
|
||||
65 stub COGETTREATASCLASS
|
||||
66 stub COTREATASCLASS
|
||||
67 stub COGETSTANDARDMARSHAL
|
||||
68 stub PROPAGATERESULT
|
||||
69 stub IIDFROMSTRING
|
||||
70 stub _IID_ISTDMARSHALINFO
|
||||
71 pascal CoCreateStandardMalloc(long ptr) CoCreateStandardMalloc16
|
||||
72 stub _IID_IEXTERNALCONNECTION
|
||||
73 stub COCREATEGUID
|
||||
75 stub FNASSERT
|
||||
76 pascal StringFromGUID2(ptr ptr word) StringFromGUID2
|
||||
77 stub COGETCLASSEXT
|
||||
78 stub OLE1CLASSFROMCLSID2
|
||||
79 stub CLSIDFROMOLE1CLASS
|
||||
80 stub COOPENCLASSKEY
|
||||
81 stub GUIDFROMSTRING
|
||||
82 pascal CoFileTimeNow(ptr) CoFileTimeNow
|
||||
83 stub REMALLOCOID
|
||||
84 stub REMFREEOID
|
||||
85 stub REMCREATEREMOTEHANDLER
|
||||
86 stub REMCONNECTTOOBJECT
|
||||
87 stub REMGETINFOFORCID
|
||||
88 stub LRPCCALL
|
||||
89 stub LRPCDISPATCH
|
||||
90 stub LRPCREGISTERMONITOR
|
||||
91 stub LRPCREVOKEMONITOR
|
||||
92 stub LRPCGETTHREADWINDOW
|
||||
93 stub TIMERCALLBACKPROC
|
||||
94 pascal LookupETask(ptr ptr) LookupETask16
|
||||
95 pascal -ret16 SetETask(word ptr) SetETask16
|
||||
96 stub LRPCFREEMONITORDATA
|
||||
97 stub REMLOOKUPSHUNK
|
||||
98 stub SHRGETSIZE
|
||||
99 stub CALLTHKMGRUNINITIALIZE
|
||||
100 stub ??0CARRAYFVALUE@@REC@KI@Z
|
||||
101 stub ??1CARRAYFVALUE@@REC@XZ
|
||||
102 stub ?ASSERTVALID@CARRAYFVALUE@@RFCXXZ
|
||||
103 stub ?FREEEXTRA@CARRAYFVALUE@@RECXXZ
|
||||
104 stub ?_GETAT@CARRAYFVALUE@@RFCPEXH@Z
|
||||
105 stub ?GETSIZE@CARRAYFVALUE@@RFCHXZ
|
||||
106 stub ?REMOVEALL@CARRAYFVALUE@@RECXXZ
|
||||
107 stub SHRDESTROY
|
||||
108 stub ?INDEXOF@CARRAYFVALUE@@RECHPEXII@Z
|
||||
109 stub ?INSERTAT@CARRAYFVALUE@@RECHHPEXH@Z
|
||||
110 stub COSETSTATE
|
||||
111 stub ?REMOVEAT@CARRAYFVALUE@@RECXHH@Z
|
||||
112 stub ?SETAT@CARRAYFVALUE@@RECXHPEX@Z
|
||||
113 stub ?SETATGROW@CARRAYFVALUE@@RECHHPEX@Z
|
||||
114 stub ?SETSIZE@CARRAYFVALUE@@RECHHH@Z
|
||||
115 pascal CoGetState(ptr) CoGetState16
|
||||
116 pascal DllEntryPoint(long word word word long word) COMPOBJ_DllEntryPoint
|
||||
117 stub ?RELEASE@CSTDMALLOC@@VEAKXZ
|
||||
118 stub ?ALLOC@CSTDMALLOC@@VEAPEXK@Z
|
||||
119 stub SHRRELEASE
|
||||
120 stub ?GETASSOCAT@CMAPKEYTOVALUE@@BFCPEUCASSOC@1@PEXIAEI@Z
|
||||
121 stub ?SETASSOCKEY@CMAPKEYTOVALUE@@BFCHPEUCASSOC@1@PEXI@Z
|
||||
122 stub ??1CMAPKEYTOVALUE@@REC@XZ
|
||||
123 stub ?GETASSOCKEYPTR@CMAPKEYTOVALUE@@BFCXPEUCASSOC@1@PEPEXPEI@Z
|
||||
124 stub ?NEWASSOC@CMAPKEYTOVALUE@@BECPEUCASSOC@1@IPEXI0@Z
|
||||
125 stub ?SIZEASSOC@CMAPKEYTOVALUE@@BFCIXZ
|
||||
126 stub ?FREEASSOC@CMAPKEYTOVALUE@@BECXPEUCASSOC@1@@Z
|
||||
127 stub ?GETSTARTPOSITION@CMAPKEYTOVALUE@@RFCPEXXZ
|
||||
128 stub ?GETNEXTASSOC@CMAPKEYTOVALUE@@RFCXPEPEXPEXPEI1@Z
|
||||
129 stub ?COMPAREASSOCKEY@CMAPKEYTOVALUE@@BFCHPEUCASSOC@1@PEXI@Z
|
||||
130 stub ?REMOVEHKEY@CMAPKEYTOVALUE@@RECHK@Z
|
||||
131 stub ?GETHKEY@CMAPKEYTOVALUE@@RFCKPEXI@Z
|
||||
132 stub ?GETCOUNT@CMAPKEYTOVALUE@@RFCHXZ
|
||||
133 stub ?LOOKUP@CMAPKEYTOVALUE@@RFCHPEXI0@Z
|
||||
134 stub ?GETASSOCVALUE@CMAPKEYTOVALUE@@BFCXPEUCASSOC@1@PEX@Z
|
||||
135 stub ?REMOVEKEY@CMAPKEYTOVALUE@@RECHPEXI@Z
|
||||
136 stub ?REMOVEALL@CMAPKEYTOVALUE@@RECXXZ
|
||||
137 stub SHRALLOC
|
||||
138 stub ?FREEASSOCKEY@CMAPKEYTOVALUE@@BFCXPEUCASSOC@1@@Z
|
||||
139 stub ?SETAT@CMAPKEYTOVALUE@@RECHPEXI0@Z
|
||||
140 stub ?LOOKUPHKEY@CMAPKEYTOVALUE@@RFCHKPEX@Z
|
||||
141 stub ?ASSERTVALID@CMAPKEYTOVALUE@@RFCXXZ
|
||||
142 stub ?SETASSOCVALUE@CMAPKEYTOVALUE@@BFCXPEUCASSOC@1@PEX@Z
|
||||
143 stub ?SETATHKEY@CMAPKEYTOVALUE@@RECHKPEX@Z
|
||||
144 stub ??0CMAPKEYTOVALUE@@REC@KIIHP7CIPEXI@ZI@Z
|
||||
145 stub ?INITHASHTABLE@CMAPKEYTOVALUE@@BECHXZ
|
||||
146 stub ?GETASSOCVALUEPTR@CMAPKEYTOVALUE@@BFCXPEUCASSOC@1@PEPEX@Z
|
||||
147 stub ?LOOKUPADD@CMAPKEYTOVALUE@@RFCHPEXI0@Z
|
||||
148 stub MKVDEFAULTHASHKEY
|
||||
149 stub DELETE16
|
||||
150 stub COMEMCTXOF
|
||||
151 stub COMEMALLOC
|
||||
152 stub COMEMFREE
|
||||
153 stub SHRREALLOC
|
||||
154 stub ___EXPORTEDSTUB
|
||||
155 stub LRPCREGISTERWIN32SMONITOR
|
||||
156 stub MYREMGETINFOFORCID
|
||||
157 stub SHRFREE
|
||||
158 stub OPNEW16
|
||||
159 stub ADDCOINFO
|
||||
160 stub CORUNMODALLOOP
|
||||
161 stub COHANDLEINCOMINGCALL
|
||||
162 stub COSETACKSTATE
|
||||
163 stub SHRDIDALLOC
|
||||
164 stub ?GETAT@CARRAYFVALUE@@RFCPEXH@Z
|
||||
165 stub ?GETUPPERBOUND@CARRAYFVALUE@@RFCHXZ
|
||||
166 stub OPDELETE16
|
||||
167 stub ?GETSIZEVALUE@CARRAYFVALUE@@RFCHXZ
|
||||
168 stub ?PROXY1632ADDREF@@ZAKPEVCPROXY1632@@@Z
|
||||
# FIXME: 169 is a duplicate of 97
|
||||
169 stub REMLOOKUPSHUNK_dup
|
||||
170 stub ?ISEMPTY@CMAPKEYTOVALUE@@RFCHXZ
|
||||
171 stub ?FREE@CSTDMALLOC@@VEAXPEX@Z
|
||||
172 stub CALLTHKMGRINITIALIZE
|
||||
173 stub ?REALLOC@CSTDMALLOC@@VEAPEXPEXK@Z
|
||||
174 stub ?SM16RHQI@@ZAPEXPEVCSM16RELEASEHANDLER@@AFUGUID@@PEPEX@Z
|
||||
175 stub ?PROXY1632METHOD10@@ZAKPEVCPROXY1632@@@Z
|
||||
# FIXME: 176 is a duplicate of 154
|
||||
176 stub ___EXPORTEDSTUB_dup
|
||||
177 stub ?PROXY1632METHOD20@@ZAKPEVCPROXY1632@@@Z
|
||||
178 stub ?PROXY1632METHOD11@@ZAKPEVCPROXY1632@@@Z
|
||||
179 stub ?PROXY1632METHOD30@@ZAKPEVCPROXY1632@@@Z
|
||||
180 stub ?PROXY1632METHOD21@@ZAKPEVCPROXY1632@@@Z
|
||||
181 stub ?PROXY1632METHOD12@@ZAKPEVCPROXY1632@@@Z
|
||||
182 stub ?PROXY1632METHOD31@@ZAKPEVCPROXY1632@@@Z
|
||||
183 stub ?PROXY1632METHOD22@@ZAKPEVCPROXY1632@@@Z
|
||||
184 stub ?PROXY1632METHOD13@@ZAKPEVCPROXY1632@@@Z
|
||||
185 stub ?GETSIZE@CSTDMALLOC@@VEAKPEX@Z
|
||||
186 stub ?PROXY1632METHOD23@@ZAKPEVCPROXY1632@@@Z
|
||||
187 stub ?PROXY1632METHOD14@@ZAKPEVCPROXY1632@@@Z
|
||||
188 stub ?PROXY1632METHOD24@@ZAKPEVCPROXY1632@@@Z
|
||||
189 stub ?PROXY1632METHOD15@@ZAKPEVCPROXY1632@@@Z
|
||||
190 stub ?PROXY1632METHOD25@@ZAKPEVCPROXY1632@@@Z
|
||||
191 stub ?PROXY1632METHOD16@@ZAKPEVCPROXY1632@@@Z
|
||||
192 stub ?PROXY1632METHOD26@@ZAKPEVCPROXY1632@@@Z
|
||||
193 stub ?PROXY1632METHOD17@@ZAKPEVCPROXY1632@@@Z
|
||||
194 stub ?PROXY1632METHOD27@@ZAKPEVCPROXY1632@@@Z
|
||||
195 stub ?PROXY1632METHOD18@@ZAKPEVCPROXY1632@@@Z
|
||||
196 stub ?PROXY1632METHOD28@@ZAKPEVCPROXY1632@@@Z
|
||||
197 stub ?ADDREF@CSTDMALLOC@@VEAKXZ
|
||||
198 stub ?PROXY1632METHOD19@@ZAKPEVCPROXY1632@@@Z
|
||||
199 stub ?PROXY1632METHOD29@@ZAKPEVCPROXY1632@@@Z
|
||||
200 stub CALL32INITIALIZE
|
||||
201 pascal CALLOBJECTINWOW(ptr ptr) CallObjectInWOW
|
||||
203 stub CALLOBJECTINWOWCHECKINIT
|
||||
204 stub CALLOBJECTINWOWCHECKTHKMGR
|
||||
205 stub CONVERTHR1632
|
||||
206 stub CONVERTHR3216
|
||||
207 stub ADDAPPCOMPATFLAG
|
||||
|
||||
# WINE internal relays (for Win16 interfaces)
|
||||
500 cdecl IMalloc16_QueryInterface(ptr ptr ptr) IMalloc16_fnQueryInterface
|
||||
501 cdecl IMalloc16_AddRef(ptr) IMalloc16_fnAddRef
|
||||
502 cdecl IMalloc16_Release(ptr) IMalloc16_fnRelease
|
||||
503 cdecl IMalloc16_Alloc(ptr long) IMalloc16_fnAlloc
|
||||
504 cdecl IMalloc16_Realloc(ptr segptr long) IMalloc16_fnRealloc
|
||||
505 cdecl IMalloc16_Free(ptr segptr) IMalloc16_fnFree
|
||||
506 cdecl IMalloc16_GetSize(ptr segptr) IMalloc16_fnGetSize
|
||||
507 cdecl IMalloc16_DidAlloc(ptr segptr) IMalloc16_fnDidAlloc
|
||||
508 cdecl IMalloc16_HeapMinimize(ptr) IMalloc16_fnHeapMinimize
|
|
@ -202,17 +202,13 @@ HRESULT WINAPI __CLSIDFromStringA(LPCSTR idstr, CLSID *id);
|
|||
* Per-thread values are stored in the TEB on offset 0xF80,
|
||||
* see http://www.microsoft.com/msj/1099/bugslayer/bugslayer1099.htm
|
||||
*/
|
||||
#ifndef __REACTOS__
|
||||
static inline APARTMENT* COM_CurrentInfo(void) WINE_UNUSED;
|
||||
#endif
|
||||
static inline APARTMENT* COM_CurrentInfo(void)
|
||||
{
|
||||
APARTMENT* apt = NtCurrentTeb()->ReservedForOle;
|
||||
return apt;
|
||||
}
|
||||
#ifndef __REACTOS__
|
||||
static inline APARTMENT* COM_CurrentApt(void) WINE_UNUSED;
|
||||
#endif
|
||||
static inline APARTMENT* COM_CurrentApt(void)
|
||||
{
|
||||
APARTMENT* apt = COM_CurrentInfo();
|
||||
|
|
|
@ -22,16 +22,10 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#define NONAMELESSUNION
|
||||
#define NONAMELESSSTRUCT
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#ifdef __REACTOS__
|
||||
#include "wingdi.h"
|
||||
#endif
|
||||
#include "winuser.h"
|
||||
#include "winerror.h"
|
||||
#include "wine/debug.h"
|
||||
|
|
|
@ -47,9 +47,6 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#define NONAMELESSUNION
|
||||
#define NONAMELESSSTRUCT
|
||||
#include "windef.h"
|
||||
|
|
292
reactos/lib/ole32/dcom.idl
Normal file
|
@ -0,0 +1,292 @@
|
|||
/*
|
||||
* Copyright 2003 Ove Kåven, TransGaming Technologies
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
/* see http://www.microsoft.com/msj/0398/dcom.htm */
|
||||
/* and the official DCOM specification
|
||||
* (there's a copy at http://www.grimes.demon.co.uk/DCOM/DCOMSpec.htm) */
|
||||
|
||||
import "unknwn.idl";
|
||||
|
||||
[
|
||||
uuid(99fcfe60-5260-101b-bbcb-00aa0021347a),
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface ObjectRpcBaseTypes
|
||||
{
|
||||
typedef unsigned hyper ID;
|
||||
typedef ID MID;
|
||||
typedef ID OXID;
|
||||
typedef ID OID;
|
||||
typedef ID SETID;
|
||||
typedef GUID IPID;
|
||||
typedef GUID CID;
|
||||
typedef REFGUID REFIPID;
|
||||
|
||||
const unsigned short COM_MINOR_VERSION_1 = 1;
|
||||
const unsigned short COM_MINOR_VERSION_2 = 2;
|
||||
|
||||
const unsigned short COM_MAJOR_VERSION = 5;
|
||||
const unsigned short COM_MINOR_VERSION = 3;
|
||||
|
||||
typedef struct tagCOMVERSION {
|
||||
unsigned short MajorVersion;
|
||||
unsigned short MinorVersion;
|
||||
} COMVERSION;
|
||||
|
||||
const unsigned long ORPCF_NULL = 0;
|
||||
const unsigned long ORPCF_LOCAL = 1;
|
||||
const unsigned long ORPCF_RESERVED1 = 2;
|
||||
const unsigned long ORPCF_RESERVED2 = 4;
|
||||
const unsigned long ORPCF_RESERVED3 = 8;
|
||||
const unsigned long ORPCF_RESERVED4 = 16;
|
||||
|
||||
typedef struct tagORPC_EXTENT {
|
||||
GUID id;
|
||||
unsigned long size;
|
||||
[size_is((size+7)&~7)] byte data[];
|
||||
} ORPC_EXTENT;
|
||||
|
||||
typedef struct tagORPC_EXTENT_ARRAY {
|
||||
unsigned long size;
|
||||
unsigned long reserved;
|
||||
[size_is((size+1)&~1,), unique] ORPC_EXTENT **extent;
|
||||
} ORPC_EXTENT_ARRAY;
|
||||
|
||||
typedef struct tagORPCTHIS {
|
||||
COMVERSION version;
|
||||
unsigned long flags;
|
||||
unsigned long reserved1;
|
||||
CID cid;
|
||||
[unique] ORPC_EXTENT_ARRAY *extensions;
|
||||
} ORPCTHIS;
|
||||
|
||||
typedef struct tagORPCTHAT {
|
||||
unsigned long flags;
|
||||
[unique] ORPC_EXTENT_ARRAY *extensions;
|
||||
} ORPCTHAT;
|
||||
|
||||
const unsigned short NCADG_IP_UDP = 0x08;
|
||||
const unsigned short NCACN_IP_TCP = 0x07;
|
||||
const unsigned short NCADG_IPX = 0x0E;
|
||||
const unsigned short NCACN_SPX = 0x0C;
|
||||
const unsigned short NCACN_NB_NB = 0x12;
|
||||
const unsigned short NCACN_NB_IPX = 0x0D;
|
||||
const unsigned short NCACN_DNET_NSP = 0x04;
|
||||
const unsigned short NCACN_HTTP = 0x1F;
|
||||
|
||||
typedef struct tagSTRINGBINDING {
|
||||
unsigned short wTowerId;
|
||||
[string] unsigned short aNetworkAddr[];
|
||||
} STRINGBINDING;
|
||||
|
||||
const unsigned short COM_C_AUTHZ_NONE = 0xffff;
|
||||
|
||||
typedef struct tagSECURITYBINDING {
|
||||
unsigned short wAuthnSvc;
|
||||
unsigned short wAuthzSvc;
|
||||
[string] unsigned short aPrincName[];
|
||||
} SECURITYBINDING;
|
||||
|
||||
typedef struct tagDUALSTRINGARRAY {
|
||||
unsigned short wNumEntries;
|
||||
unsigned short wSecurityOffset;
|
||||
[size_is(wNumEntries)] unsigned short aStringArray[];
|
||||
} DUALSTRINGARRAY;
|
||||
|
||||
const unsigned long OBJREF_SIGNATURE = 0x574f454d; /* "MEOW" */
|
||||
const unsigned long OBJREF_STANDARD = 0x1;
|
||||
const unsigned long OBJREF_HANDLER = 0x2;
|
||||
const unsigned long OBJREF_CUSTOM = 0x4;
|
||||
const unsigned long SORF_OXRES1 = 0x1;
|
||||
const unsigned long SORF_OXRES2 = 0x20;
|
||||
const unsigned long SORF_OXRES3 = 0x40;
|
||||
const unsigned long SORF_OXRES4 = 0x80;
|
||||
const unsigned long SORF_OXRES5 = 0x100;
|
||||
const unsigned long SORF_OXRES6 = 0x200;
|
||||
const unsigned long SORF_OXRES7 = 0x400;
|
||||
const unsigned long SORF_OXRES8 = 0x800;
|
||||
const unsigned long SORF_NULL = 0x0;
|
||||
const unsigned long SORF_NOPING = 0x1000;
|
||||
|
||||
typedef struct tagSTDOBJREF {
|
||||
unsigned long flags;
|
||||
unsigned long cPublicRefs;
|
||||
OXID oxid;
|
||||
OID oid;
|
||||
IPID ipid;
|
||||
} STDOBJREF;
|
||||
|
||||
typedef struct tagOBJREF {
|
||||
unsigned long signature;
|
||||
unsigned long flags;
|
||||
GUID iid;
|
||||
[switch_is(flags)] union {
|
||||
[case(OBJREF_STANDARD)] struct OR_STANDARD {
|
||||
STDOBJREF std;
|
||||
DUALSTRINGARRAY saResAddr;
|
||||
} u_standard;
|
||||
[case(OBJREF_HANDLER)] struct OR_HANDLER {
|
||||
STDOBJREF std;
|
||||
CLSID clsid;
|
||||
DUALSTRINGARRAY saResAddr;
|
||||
} u_handler;
|
||||
[case(OBJREF_CUSTOM)] struct OR_CUSTOM {
|
||||
CLSID clsid;
|
||||
unsigned long cbExtension;
|
||||
unsigned long size;
|
||||
[size_is(size), ref] byte *pData;
|
||||
} u_custom;
|
||||
} u_objref;
|
||||
} OBJREF;
|
||||
|
||||
typedef struct tagMInterfacePointer {
|
||||
ULONG ulCntData;
|
||||
[size_is(ulCntData)] BYTE abData[];
|
||||
} MInterfacePointer;
|
||||
|
||||
typedef [unique] MInterfacePointer *PMInterfacePointer;
|
||||
|
||||
} /* interface ObjectRpcBaseTypes */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(00000131-0000-0000-C000-000000000046)
|
||||
]
|
||||
interface IRemUnknown : IUnknown
|
||||
{
|
||||
typedef [unique] IRemUnknown *LPREMUNKNOWN;
|
||||
|
||||
typedef struct tagREMQIRESULT {
|
||||
HRESULT hResult;
|
||||
STDOBJREF std;
|
||||
} REMQIRESULT;
|
||||
|
||||
typedef struct tagREMINTERFACEREF {
|
||||
IPID ipid;
|
||||
unsigned long cPublicRefs;
|
||||
unsigned long cPrivateRefs;
|
||||
} REMINTERFACEREF;
|
||||
|
||||
HRESULT RemQueryInterface(
|
||||
[in] REFIPID ripid,
|
||||
[in] unsigned long cRefs,
|
||||
[in] unsigned short cIids,
|
||||
[in, size_is(cIids)] IID *iids,
|
||||
[out, size_is(,cIids)] REMQIRESULT **ppQIResults);
|
||||
|
||||
HRESULT RemAddRef(
|
||||
[in] unsigned short cInterfaceRefs,
|
||||
[in, size_is(cInterfaceRefs)] REMINTERFACEREF* InterfaceRefs,
|
||||
[out, size_is(cInterfaceRefs)] HRESULT *pResults);
|
||||
|
||||
HRESULT RemRelease(
|
||||
[in] unsigned short cInterfaceRefs,
|
||||
[in, size_is(cInterfaceRefs)] REMINTERFACEREF* InterfaceRefs);
|
||||
}
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(00000142-0000-0000-C000-000000000046)
|
||||
]
|
||||
interface IRemUnknown2 : IRemUnknown
|
||||
{
|
||||
typedef [unique] IRemUnknown2 *LPREMUNKNOWN2;
|
||||
|
||||
HRESULT RemQueryInterface2(
|
||||
[in] REFIPID ripid,
|
||||
[in] unsigned short cIids,
|
||||
[in, size_is(cIids)] IID *iids,
|
||||
[out, size_is(cIids)] HRESULT *phr,
|
||||
[out, size_is(cIids)] MInterfacePointer **ppMIF);
|
||||
}
|
||||
|
||||
cpp_quote("#if 0")
|
||||
[
|
||||
uuid(99fcfec4-5260-101b-bbcb-00aa0021347a),
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface IOXIDResolver
|
||||
{
|
||||
[idempotent] error_status_t ResolveOxid(
|
||||
[in] handle_t hRpc,
|
||||
[in] OXID *pOxid,
|
||||
[in] unsigned short cRequestedProtseqs,
|
||||
[in, ref, size_is(cRequestedProtseqs)] unsigned short arRequestedProtseqs[],
|
||||
[out, ref] DUALSTRINGARRAY **ppdsaOxidBindings,
|
||||
[out, ref] IPID *pipidRemUnknown,
|
||||
[out, ref] DWORD *pAuthnHint);
|
||||
|
||||
[idempotent] error_status_t SimplePing(
|
||||
[in] handle_t hRpc,
|
||||
[in] SETID *pSetId);
|
||||
|
||||
[idempotent] error_status_t ComplexPing(
|
||||
[in] handle_t hRpc,
|
||||
[in, out] SETID *pSetId,
|
||||
[in] unsigned short SequenceNum,
|
||||
[in] unsigned short cAddToSet,
|
||||
[in] unsigned short cDelFromSet,
|
||||
[in, unique, size_is(cAddToSet)] OID AddToSet[],
|
||||
[in, unique, size_is(cDelFromSet)] OID DelFromSet[],
|
||||
[out] unsigned short *pPingBackoffFactor);
|
||||
|
||||
[idempotent] error_status_t ServerAlive(
|
||||
[in] handle_t hRpc);
|
||||
|
||||
[idempotent] error_status_t ResolveOxid2(
|
||||
[in] handle_t hRpc,
|
||||
[in] OXID *pOxid,
|
||||
[in] unsigned short cRequestedProtseqs,
|
||||
[in, ref, size_is(cRequestedProtseqs)] unsigned short arRequestedProtseqs[],
|
||||
[out, ref] DUALSTRINGARRAY **ppdsaOxidBindings,
|
||||
[out, ref] IPID *pipidRemUnknown,
|
||||
[out, ref] DWORD *pAuthnHint,
|
||||
[out, ref] COMVERSION *pComVersion);
|
||||
}
|
||||
|
||||
[
|
||||
uuid(4d9f4ab8-7d1c-11cf-861e-0020af6e7c57),
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface IRemoteActivation
|
||||
{
|
||||
const unsigned long MODE_GET_CLASS_OBJECT = 0xffffffff;
|
||||
|
||||
HRESULT RemoteActivation(
|
||||
[in] handle_t hRpc,
|
||||
[in] ORPCTHIS *ORPCthis,
|
||||
[out] ORPCTHAT *ORPCthat,
|
||||
[in] GUID *Clsid,
|
||||
[in, string, unique] WCHAR *pwszObjectName,
|
||||
[in, unique] MInterfacePointer *pObjectStorage,
|
||||
[in] DWORD ClientImpLevel,
|
||||
[in] DWORD Mode,
|
||||
[in] DWORD Interfaces,
|
||||
[in, unique, size_is(Interfaces)] IID *pIIDs,
|
||||
[in] unsigned short cRequestedProtseqs,
|
||||
[in, size_is(cRequestedProtseqs)] unsigned short RequestedProtseqs[],
|
||||
[out] OXID *pOxid,
|
||||
[out] DUALSTRINGARRAY **ppdsaOxidBindings,
|
||||
[out] IPID *pipidRemUnknown,
|
||||
[out] DWORD *pAuthnHint,
|
||||
[out] COMVERSION *pServerVersion,
|
||||
[out] HRESULT *phr,
|
||||
[out,size_is(Interfaces)] MInterfacePointer **ppInterfaceData,
|
||||
[out,size_is(Interfaces)] HRESULT *pResults);
|
||||
}
|
||||
cpp_quote("#endif")
|
|
@ -49,14 +49,8 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#ifdef __REACTOS__
|
||||
#include "wingdi.h"
|
||||
#endif
|
||||
#include "winuser.h"
|
||||
#include "winerror.h"
|
||||
#include "wine/unicode.h"
|
||||
|
@ -931,7 +925,7 @@ static HRESULT WINAPI DefaultHandler_GetMoniker(
|
|||
|
||||
}
|
||||
|
||||
return E_FAIL;
|
||||
return E_UNSPEC;
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
|
|
Before Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 326 B |
|
@ -26,15 +26,12 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "objbase.h"
|
||||
#include "oleauto.h"
|
||||
#include "winerror.h"
|
||||
|
||||
#include "objbase.h"
|
||||
#include "wine/unicode.h"
|
||||
#include "compobj_private.h"
|
||||
|
||||
|
|
|
@ -22,9 +22,6 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#define NONAMELESSUNION
|
||||
#define NONAMELESSSTRUCT
|
||||
#include "windef.h"
|
||||
|
@ -712,7 +709,7 @@ HRESULT WINAPI FileMonikerImpl_BindToStorage(IMoniker* iface,
|
|||
else
|
||||
if ( (IsEqualIID(&IID_IStream, riid)) || (IsEqualIID(&IID_ILockBytes, riid)) )
|
||||
|
||||
return E_FAIL;
|
||||
return E_UNSPEC;
|
||||
else
|
||||
|
||||
return E_NOINTERFACE;
|
||||
|
@ -1338,14 +1335,12 @@ HRESULT WINAPI FileMonikerROTDataImpl_GetComparaisonData(IROTData* iface,
|
|||
/******************************************************************************
|
||||
* CreateFileMoniker (OLE2.28)
|
||||
******************************************************************************/
|
||||
#ifndef __REACTOS__
|
||||
HRESULT WINAPI CreateFileMoniker16(LPCOLESTR16 lpszPathName,LPMONIKER* ppmk)
|
||||
{
|
||||
|
||||
FIXME("(%s,%p),stub!\n",lpszPathName,ppmk);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
#endif
|
||||
|
||||
/******************************************************************************
|
||||
* CreateFileMoniker (OLE32.@)
|
||||
|
|
|
@ -26,9 +26,6 @@
|
|||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "objbase.h"
|
||||
|
|
|
@ -34,14 +34,8 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#ifdef __REACTOS__
|
||||
#include "wingdi.h"
|
||||
#endif
|
||||
#include "winuser.h"
|
||||
#include "objbase.h"
|
||||
#include "ole2.h"
|
||||
|
|
|
@ -29,16 +29,10 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#define NONAMELESSUNION
|
||||
#define NONAMELESSSTRUCT
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#ifdef __REACTOS__
|
||||
#include "wingdi.h"
|
||||
#endif
|
||||
#include "winuser.h"
|
||||
#include "objbase.h"
|
||||
#include "ole2.h"
|
||||
|
|
|
@ -26,14 +26,8 @@
|
|||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#ifdef __REACTOS__
|
||||
#include "wingdi.h"
|
||||
#endif
|
||||
#include "winuser.h"
|
||||
#include "ole2.h"
|
||||
#include "winerror.h"
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
|
||||
typedef struct IMalloc16 IMalloc16, *LPMALLOC16;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IMalloc16
|
||||
#define IMalloc16_METHODS \
|
||||
IUnknown_METHODS \
|
||||
|
|
|
@ -22,17 +22,11 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#include <wine/icom.h>
|
||||
#endif
|
||||
#define NONAMELESSUNION
|
||||
#define NONAMELESSSTRUCT
|
||||
#include "winerror.h"
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#ifdef __REACTOS__
|
||||
#include "wingdi.h"
|
||||
#endif
|
||||
#include "winuser.h"
|
||||
#include "winnls.h"
|
||||
#include "wine/debug.h"
|
||||
|
@ -966,7 +960,6 @@ HRESULT WINAPI ItemMonikerROTDataImpl_GetComparaisonData(IROTData* iface,
|
|||
/******************************************************************************
|
||||
* CreateItemMoniker16 [OLE2.28]
|
||||
******************************************************************************/
|
||||
#ifndef __REACTOS__
|
||||
HRESULT WINAPI CreateItemMoniker16(LPCOLESTR16 lpszDelim,LPCOLESTR lpszItem,LPMONIKER* ppmk)
|
||||
{
|
||||
|
||||
|
@ -974,7 +967,6 @@ HRESULT WINAPI CreateItemMoniker16(LPCOLESTR16 lpszDelim,LPCOLESTR lpszItem,LPM
|
|||
*ppmk = NULL;
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
#endif
|
||||
|
||||
/******************************************************************************
|
||||
* CreateItemMoniker [OLE32.@]
|
||||
|
|