aboutsummaryrefslogtreecommitdiff
path: root/c/common.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-17 02:30:34 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-17 02:30:34 +0200
commitcd5ff302d1b03edb6fe81254c585e0e88c8e71ee (patch)
treebbf61c24e710f6ac07f2973ca31efdd1a2c9cbeb /c/common.h
parente96b4db3fb46384f286e9297186b87648c7219c4 (diff)
downloadEpisodeBrowser-cd5ff302d1b03edb6fe81254c585e0e88c8e71ee.tar.gz
Name function arguments in headers.
This is obviously a lot less obtuse.
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;
};