- hackfix build

svn path=/trunk/; revision=30367
This commit is contained in:
Johannes Anderwald 2007-11-11 22:10:53 +00:00
parent a6a6521b06
commit 9bcd750116
3 changed files with 4 additions and 3 deletions

View file

@ -50,7 +50,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
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 GUID dummy1 = {0xD969A300, 0xE7FF, 0x11d0, {0xA9, 0x3B, 0x00, 0xA0, 0xC9, 0x0F, 0x27, 0x19} };
/**************************************************************************
* Default ClassFactory types
*/
@ -78,7 +78,7 @@ static const struct {
{&CLSID_Printers, &ISF_Printers_Constructor},
{&CLSID_RecycleBin, &RecycleBin_Constructor},
{&CLSID_OpenWith, &SHEOW_Constructor},
{&CLSID_NewMenu, &INewItem_Constructor},
{&dummy1, &INewItem_Constructor},
{NULL,NULL}
};

View file

@ -817,6 +817,7 @@ static void DoProperties(
ShellExecuteA(hwnd, "open", "rundll32.exe shell32.dll,Control_RunDLL desk.cpl", NULL, NULL, SW_SHOWNORMAL);
return;
}
#if 0
else if (_ILIsDrive(This->apidl[0]))
{
WCHAR buffer[111];
@ -824,6 +825,7 @@ static void DoProperties(
SH_ShowDriveProperties(buffer);
return;
}
#endif
else if (_ILIsBitBucket(This->apidl[0]))
{
///FIXME

View file

@ -55,7 +55,6 @@ typedef struct
PSHELLNEW_ITEM s_SnHead;
}INewMenuImpl;
const GUID CLSID_NewMenu = {0xD969A300, 0xE7FF, 0x11d0, {0xA9, 0x3B, 0x00, 0xA0, 0xC9, 0x0F, 0x27, 0x19} };
static const IContextMenu2Vtbl cmvt;
static WCHAR szNew[100];