summaryrefslogtreecommitdiff
path: root/textscreen
diff options
context:
space:
mode:
authorSimon Howard2013-05-27 17:56:06 +0000
committerSimon Howard2013-05-27 17:56:06 +0000
commitba1c027718cbb862a2f87a417d8bdc94a9897dcf (patch)
tree321e9595b0fb91cf30f33240c0cc825675867744 /textscreen
parentce8a95a5b912194ea76ebd5fb6a78c84a22747ad (diff)
downloadchocolate-doom-ba1c027718cbb862a2f87a417d8bdc94a9897dcf.tar.gz
chocolate-doom-ba1c027718cbb862a2f87a417d8bdc94a9897dcf.tar.bz2
chocolate-doom-ba1c027718cbb862a2f87a417d8bdc94a9897dcf.zip
Remove use of WINAPI macro to fix compile under MSVC.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 2602
Diffstat (limited to 'textscreen')
-rw-r--r--textscreen/txt_fileselect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/textscreen/txt_fileselect.c b/textscreen/txt_fileselect.c
index 56fa1108..6e492734 100644
--- a/textscreen/txt_fileselect.c
+++ b/textscreen/txt_fileselect.c
@@ -149,7 +149,7 @@ static char *ExecReadOutput(char **argv)
#include <windows.h>
#include <shlobj.h>
-static BOOL WINAPI (*MyGetOpenFileName)(LPOPENFILENAME) = NULL;
+static BOOL (*MyGetOpenFileName)(LPOPENFILENAME) = NULL;
static LPITEMIDLIST (*MySHBrowseForFolder)(LPBROWSEINFO) = NULL;
static BOOL (*MySHGetPathFromIDList)(LPITEMIDLIST, LPTSTR) = NULL;