Skip to content
Snippets Groups Projects
Commit 0529ba51 authored by rswindell's avatar rswindell
Browse files

nopen functions can't be DLL-exported.

parent b89c9b27
Branches
Tags
No related merge requests found
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
/* number of times if the attempted file is already open or denying access */ /* number of times if the attempted file is already open or denying access */
/* for some other reason. All files are opened in BINARY mode. */ /* for some other reason. All files are opened in BINARY mode. */
/****************************************************************************/ /****************************************************************************/
int DLLCALL nopen(char *str, int access) int nopen(char *str, int access)
{ {
int file,share,count=0; int file,share,count=0;
...@@ -64,7 +64,7 @@ int DLLCALL nopen(char *str, int access) ...@@ -64,7 +64,7 @@ int DLLCALL nopen(char *str, int access)
/* This function performs an nopen, but returns a file stream with a buffer */ /* This function performs an nopen, but returns a file stream with a buffer */
/* allocated. */ /* allocated. */
/****************************************************************************/ /****************************************************************************/
FILE* DLLCALL fnopen(int *fd, char *str, int access) FILE* fnopen(int *fd, char *str, int access)
{ {
char mode[128]; char mode[128];
int file; int file;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment