mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:52:56 +00:00
- hackfix build
svn path=/trunk/; revision=30367
This commit is contained in:
parent
a6a6521b06
commit
9bcd750116
3 changed files with 4 additions and 3 deletions
|
@ -50,7 +50,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
||||||
extern HRESULT WINAPI IFSFolder_Constructor(IUnknown * pUnkOuter, REFIID riid, LPVOID * ppv);
|
extern HRESULT WINAPI IFSFolder_Constructor(IUnknown * pUnkOuter, REFIID riid, LPVOID * ppv);
|
||||||
|
|
||||||
static const WCHAR sShell32[12] = {'S','H','E','L','L','3','2','.','D','L','L','\0'};
|
static const WCHAR sShell32[12] = {'S','H','E','L','L','3','2','.','D','L','L','\0'};
|
||||||
|
static const GUID dummy1 = {0xD969A300, 0xE7FF, 0x11d0, {0xA9, 0x3B, 0x00, 0xA0, 0xC9, 0x0F, 0x27, 0x19} };
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* Default ClassFactory types
|
* Default ClassFactory types
|
||||||
*/
|
*/
|
||||||
|
@ -78,7 +78,7 @@ static const struct {
|
||||||
{&CLSID_Printers, &ISF_Printers_Constructor},
|
{&CLSID_Printers, &ISF_Printers_Constructor},
|
||||||
{&CLSID_RecycleBin, &RecycleBin_Constructor},
|
{&CLSID_RecycleBin, &RecycleBin_Constructor},
|
||||||
{&CLSID_OpenWith, &SHEOW_Constructor},
|
{&CLSID_OpenWith, &SHEOW_Constructor},
|
||||||
{&CLSID_NewMenu, &INewItem_Constructor},
|
{&dummy1, &INewItem_Constructor},
|
||||||
{NULL,NULL}
|
{NULL,NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -817,6 +817,7 @@ static void DoProperties(
|
||||||
ShellExecuteA(hwnd, "open", "rundll32.exe shell32.dll,Control_RunDLL desk.cpl", NULL, NULL, SW_SHOWNORMAL);
|
ShellExecuteA(hwnd, "open", "rundll32.exe shell32.dll,Control_RunDLL desk.cpl", NULL, NULL, SW_SHOWNORMAL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
else if (_ILIsDrive(This->apidl[0]))
|
else if (_ILIsDrive(This->apidl[0]))
|
||||||
{
|
{
|
||||||
WCHAR buffer[111];
|
WCHAR buffer[111];
|
||||||
|
@ -824,6 +825,7 @@ static void DoProperties(
|
||||||
SH_ShowDriveProperties(buffer);
|
SH_ShowDriveProperties(buffer);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
else if (_ILIsBitBucket(This->apidl[0]))
|
else if (_ILIsBitBucket(This->apidl[0]))
|
||||||
{
|
{
|
||||||
///FIXME
|
///FIXME
|
||||||
|
|
|
@ -55,7 +55,6 @@ typedef struct
|
||||||
PSHELLNEW_ITEM s_SnHead;
|
PSHELLNEW_ITEM s_SnHead;
|
||||||
}INewMenuImpl;
|
}INewMenuImpl;
|
||||||
|
|
||||||
const GUID CLSID_NewMenu = {0xD969A300, 0xE7FF, 0x11d0, {0xA9, 0x3B, 0x00, 0xA0, 0xC9, 0x0F, 0x27, 0x19} };
|
|
||||||
static const IContextMenu2Vtbl cmvt;
|
static const IContextMenu2Vtbl cmvt;
|
||||||
static WCHAR szNew[100];
|
static WCHAR szNew[100];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue