diff options
Diffstat (limited to 'c/common.h')
-rw-r--r-- | c/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -13,7 +13,7 @@ struct Win32Error : public std::exception { - Win32Error(DWORD); + Win32Error(DWORD dwErr); ~Win32Error(void); virtual const char* what(void) const noexcept override; private: @@ -23,9 +23,9 @@ private: struct Library { - Library(const TCHAR*); + Library(const TCHAR* tszLibrary); ~Library(void); - FARPROC GetProcAddress(const char*); + FARPROC GetProcAddress(const char* szProc); private: HMODULE m_hModule; }; |