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
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@
/* number of times if the attempted file is already open or denying access */
/* 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;
......@@ -64,7 +64,7 @@ int DLLCALL nopen(char *str, int access)
/* This function performs an nopen, but returns a file stream with a buffer */
/* allocated. */
/****************************************************************************/
FILE* DLLCALL fnopen(int *fd, char *str, int access)
FILE* fnopen(int *fd, char *str, int access)
{
char mode[128];
int file;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment