Module: wine Branch: master Commit: 93f656bf855f46ea490d4ac5173ea1b94e5e90e8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=93f656bf855f46ea490d4ac517...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Sun Jul 6 13:00:42 2008 +0100
shell32: Remove unneeded address-of operators from function names.
---
dlls/shell32/shellole.c | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/dlls/shell32/shellole.c b/dlls/shell32/shellole.c index 19dba05..bec9996 100644 --- a/dlls/shell32/shellole.c +++ b/dlls/shell32/shellole.c @@ -60,19 +60,19 @@ static const struct { REFIID riid; LPFNCREATEINSTANCE lpfnCI; } InterfaceTable[] = { - {&CLSID_ShellFSFolder, &IFSFolder_Constructor}, - {&CLSID_MyComputer, &ISF_MyComputer_Constructor}, - {&CLSID_NetworkPlaces, &ISF_NetworkPlaces_Constructor}, - {&CLSID_ShellDesktop, &ISF_Desktop_Constructor}, - {&CLSID_ShellLink, &IShellLink_Constructor}, - {&CLSID_DragDropHelper, &IDropTargetHelper_Constructor}, - {&CLSID_ControlPanel, &IControlPanel_Constructor}, - {&CLSID_AutoComplete, &IAutoComplete_Constructor}, - {&CLSID_UnixFolder, &UnixFolder_Constructor}, - {&CLSID_UnixDosFolder, &UnixDosFolder_Constructor}, - {&CLSID_FolderShortcut, &FolderShortcut_Constructor}, - {&CLSID_MyDocuments, &MyDocuments_Constructor}, - {&CLSID_RecycleBin, &RecycleBin_Constructor}, + {&CLSID_ShellFSFolder, IFSFolder_Constructor}, + {&CLSID_MyComputer, ISF_MyComputer_Constructor}, + {&CLSID_NetworkPlaces, ISF_NetworkPlaces_Constructor}, + {&CLSID_ShellDesktop, ISF_Desktop_Constructor}, + {&CLSID_ShellLink, IShellLink_Constructor}, + {&CLSID_DragDropHelper, IDropTargetHelper_Constructor}, + {&CLSID_ControlPanel, IControlPanel_Constructor}, + {&CLSID_AutoComplete, IAutoComplete_Constructor}, + {&CLSID_UnixFolder, UnixFolder_Constructor}, + {&CLSID_UnixDosFolder, UnixDosFolder_Constructor}, + {&CLSID_FolderShortcut, FolderShortcut_Constructor}, + {&CLSID_MyDocuments, MyDocuments_Constructor}, + {&CLSID_RecycleBin, RecycleBin_Constructor}, {NULL,NULL} };