Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
42fe0e73
Commit
42fe0e73
authored
Jul 13, 2011
by
rswindell
Browse files
Fix missing MSVC prototype check to work with C++Builder 2010.
parent
bfb8efe4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/xpdev/filewrap.h
src/xpdev/filewrap.h
+2
-2
No files found.
src/xpdev/filewrap.h
View file @
42fe0e73
...
...
@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 201
0
Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 201
1
Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
...
...
@@ -175,7 +175,7 @@ extern "C" {
DLLEXPORT
FILE
*
DLLCALL
_fsopen
(
char
*
pszFilename
,
char
*
pszMode
,
int
shmode
);
#endif
#if _MSC_VER < 1300
/* missing prototypes */
#if
defined(_MSC_VER) && (
_MSC_VER < 1300
)
/* missing prototypes */
DLLEXPORT
int
DLLCALL
_fseeki64
(
FILE
*
,
int64_t
,
int
origin
);
DLLEXPORT
int64_t
DLLCALL
_ftelli64
(
FILE
*
);
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment