diff options
Diffstat (limited to 'c/common.h')
-rw-r--r-- | c/common.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -15,17 +15,17 @@ struct Win32Error : public std::exception { Win32Error(DWORD); ~Win32Error(void); - virtual const char *what(void) const noexcept override; + virtual const char* what(void) const noexcept override; private: DWORD m_dwErr; - char *m_szMsg = NULL; + char* const m_szMsg = NULL; }; struct Library { - Library(const TCHAR *); + Library(const TCHAR*); ~Library(void); - FARPROC GetProcAddress(const char *); + FARPROC GetProcAddress(const char*); private: HMODULE m_hModule; }; |