Commit 93f656bf authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

shell32: Remove unneeded address-of operators from function names.

parent f0d7a291
...@@ -60,19 +60,19 @@ static const struct { ...@@ -60,19 +60,19 @@ static const struct {
REFIID riid; REFIID riid;
LPFNCREATEINSTANCE lpfnCI; LPFNCREATEINSTANCE lpfnCI;
} InterfaceTable[] = { } InterfaceTable[] = {
{&CLSID_ShellFSFolder, &IFSFolder_Constructor}, {&CLSID_ShellFSFolder, IFSFolder_Constructor},
{&CLSID_MyComputer, &ISF_MyComputer_Constructor}, {&CLSID_MyComputer, ISF_MyComputer_Constructor},
{&CLSID_NetworkPlaces, &ISF_NetworkPlaces_Constructor}, {&CLSID_NetworkPlaces, ISF_NetworkPlaces_Constructor},
{&CLSID_ShellDesktop, &ISF_Desktop_Constructor}, {&CLSID_ShellDesktop, ISF_Desktop_Constructor},
{&CLSID_ShellLink, &IShellLink_Constructor}, {&CLSID_ShellLink, IShellLink_Constructor},
{&CLSID_DragDropHelper, &IDropTargetHelper_Constructor}, {&CLSID_DragDropHelper, IDropTargetHelper_Constructor},
{&CLSID_ControlPanel, &IControlPanel_Constructor}, {&CLSID_ControlPanel, IControlPanel_Constructor},
{&CLSID_AutoComplete, &IAutoComplete_Constructor}, {&CLSID_AutoComplete, IAutoComplete_Constructor},
{&CLSID_UnixFolder, &UnixFolder_Constructor}, {&CLSID_UnixFolder, UnixFolder_Constructor},
{&CLSID_UnixDosFolder, &UnixDosFolder_Constructor}, {&CLSID_UnixDosFolder, UnixDosFolder_Constructor},
{&CLSID_FolderShortcut, &FolderShortcut_Constructor}, {&CLSID_FolderShortcut, FolderShortcut_Constructor},
{&CLSID_MyDocuments, &MyDocuments_Constructor}, {&CLSID_MyDocuments, MyDocuments_Constructor},
{&CLSID_RecycleBin, &RecycleBin_Constructor}, {&CLSID_RecycleBin, RecycleBin_Constructor},
{NULL,NULL} {NULL,NULL}
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment