aboutsummaryrefslogtreecommitdiff
path: root/c/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/common.h')
-rw-r--r--c/common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/common.h b/c/common.h
index 5528ff6..2bcf0d7 100644
--- a/c/common.h
+++ b/c/common.h
@@ -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;
};