@@ -205,13 +205,13 @@ null_libintl_gettext(const char *msgid)
205205}
206206
207207 static char *
208- null_libintl_bindtextdomain (const char *domainname, const char *dirname)
208+ null_libintl_bindtextdomain (const char * /* domainname */ , const char * /* dirname */ )
209209{
210210 return NULL ;
211211}
212212
213213 static char *
214- null_libintl_textdomain (const char * domainname)
214+ null_libintl_textdomain (const char * /* domainname */ )
215215{
216216 return NULL ;
217217}
@@ -308,7 +308,7 @@ HINSTANCE g_hmodThisDll = NULL; // Handle to this DLL itself.
308308// DllMain
309309// ---------------------------------------------------------------------------
310310extern " C" int APIENTRY
311- DllMain (HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
311+ DllMain (HINSTANCE hInstance, DWORD dwReason, LPVOID /* lpReserved */ )
312312{
313313 switch (dwReason)
314314 {
@@ -438,7 +438,7 @@ STDMETHODIMP CShellExtClassFactory::CreateInstance(LPUNKNOWN pUnkOuter,
438438}
439439
440440
441- STDMETHODIMP CShellExtClassFactory::LockServer (BOOL fLock )
441+ STDMETHODIMP CShellExtClassFactory::LockServer (BOOL /* fLock */ )
442442{
443443 return NOERROR;
444444}
@@ -520,9 +520,9 @@ STDMETHODIMP_(ULONG) CShellExt::Release()
520520// It could be a context menu or a property sheet.
521521//
522522
523- STDMETHODIMP CShellExt::Initialize (LPCITEMIDLIST pIDFolder,
523+ STDMETHODIMP CShellExt::Initialize (LPCITEMIDLIST /* pIDFolder */ ,
524524 LPDATAOBJECT pDataObj,
525- HKEY hRegKey)
525+ HKEY /* hRegKey */ )
526526{
527527 // Initialize can be called more than once
528528 if (m_pDataObj)
@@ -562,8 +562,8 @@ STDMETHODIMP CShellExt::Initialize(LPCITEMIDLIST pIDFolder,
562562STDMETHODIMP CShellExt::QueryContextMenu (HMENU hMenu,
563563 UINT indexMenu,
564564 UINT idCmdFirst,
565- UINT idCmdLast,
566- UINT uFlags)
565+ UINT /* idCmdLast */ ,
566+ UINT /* uFlags */ )
567567{
568568 UINT idCmd = idCmdFirst;
569569
@@ -718,11 +718,11 @@ STDMETHODIMP CShellExt::InvokeCommand(LPCMINVOKECOMMANDINFO lpcmi)
718718 return hr;
719719}
720720
721- STDMETHODIMP CShellExt::PushToWindow (HWND hParent,
722- LPCSTR pszWorkingDir,
723- LPCSTR pszCmd,
724- LPCSTR pszParam,
725- int iShowCmd,
721+ STDMETHODIMP CShellExt::PushToWindow (HWND /* hParent */ ,
722+ LPCSTR /* pszWorkingDir */ ,
723+ LPCSTR /* pszCmd */ ,
724+ LPCSTR /* pszParam */ ,
725+ int /* iShowCmd */ ,
726726 int idHWnd)
727727{
728728 HWND hWnd = m_hWnd[idHWnd];
@@ -740,9 +740,9 @@ STDMETHODIMP CShellExt::PushToWindow(HWND hParent,
740740 return NOERROR;
741741}
742742
743- STDMETHODIMP CShellExt::GetCommandString (UINT_PTR idCmd,
743+ STDMETHODIMP CShellExt::GetCommandString (UINT_PTR /* idCmd */ ,
744744 UINT uFlags,
745- UINT FAR *reserved,
745+ UINT FAR * /* reserved */ ,
746746 LPSTR pszName,
747747 UINT cchMax)
748748{
@@ -841,10 +841,10 @@ searchpath(char *name)
841841#endif
842842
843843STDMETHODIMP CShellExt::InvokeGvim (HWND hParent,
844- LPCSTR pszWorkingDir,
845- LPCSTR pszCmd,
846- LPCSTR pszParam,
847- int iShowCmd)
844+ LPCSTR /* pszWorkingDir */ ,
845+ LPCSTR /* pszCmd */ ,
846+ LPCSTR /* pszParam */ ,
847+ int /* iShowCmd */ )
848848{
849849 char m_szFileUserClickedOn[BUFSIZE];
850850 char cmdStr[BUFSIZE];
@@ -911,10 +911,10 @@ STDMETHODIMP CShellExt::InvokeGvim(HWND hParent,
911911
912912
913913STDMETHODIMP CShellExt::InvokeSingleGvim (HWND hParent,
914- LPCSTR pszWorkingDir,
915- LPCSTR pszCmd,
916- LPCSTR pszParam,
917- int iShowCmd,
914+ LPCSTR /* pszWorkingDir */ ,
915+ LPCSTR /* pszCmd */ ,
916+ LPCSTR /* pszParam */ ,
917+ int /* iShowCmd */ ,
918918 int useDiff)
919919{
920920 char m_szFileUserClickedOn[BUFSIZE];
0 commit comments