Changes to allow dynamic building on WIN32

This commit is contained in:
MarkRivers
2013-02-18 20:50:49 +00:00
parent b7386e6ecf
commit 6a093ed8aa
+6 -5
View File
@@ -24,6 +24,7 @@
#include <stdlib.h>
#include <osiSock.h>
#include <epicsExport.h>
/******[ defines ]***************************************************/
@@ -41,11 +42,11 @@ extern "C" {
/******[ prototypes ]************************************************/
/* FTP commands */
int ftpConnect (char*, char*, char*, SOCKET*);
int ftpDisconnect (SOCKET);
int ftpChangeDir (SOCKET, char*);
int ftpRetrieveFile (SOCKET, char*);
int ftpStoreFile(SOCKET, char*);
epicsShareFunc int ftpConnect (char*, char*, char*, SOCKET*);
epicsShareFunc int ftpDisconnect (SOCKET);
epicsShareFunc int ftpChangeDir (SOCKET, char*);
epicsShareFunc int ftpRetrieveFile (SOCKET, char*);
epicsShareFunc int ftpStoreFile(SOCKET, char*);
#ifdef __cplusplus
}