aboutsummaryrefslogtreecommitdiff
path: root/c/common.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-18 03:14:39 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-18 03:14:39 +0200
commit03d9db8d5ff22faa27ab25264727bb09ba87d66d (patch)
treef914b33d10feb231170853c12092ccc527af6c2b /c/common.h
parent41745326d8440340a87b5179139b2915efe3715d (diff)
downloadEpisodeBrowser-03d9db8d5ff22faa27ab25264727bb09ba87d66d.tar.gz
Solve compiler warnings.
Diffstat (limited to 'c/common.h')
-rw-r--r--c/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/common.h b/c/common.h
index 2b3c331..169b748 100644
--- a/c/common.h
+++ b/c/common.h
@@ -27,7 +27,7 @@ struct Library
{
Library(const TCHAR* tszLibrary);
~Library();
- FARPROC GetProcAddress(const char* szProc);
+ void* GetProcAddress(const char* szProc);
private:
HMODULE m_hModule;
};