From 6a093ed8aa5ecba8aed8ee7009ecf184e3c583d6 Mon Sep 17 00:00:00 2001 From: MarkRivers Date: Mon, 18 Feb 2013 20:50:49 +0000 Subject: [PATCH] Changes to allow dynamic building on WIN32 --- motorApp/NewportSrc/xps_ftp.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/motorApp/NewportSrc/xps_ftp.h b/motorApp/NewportSrc/xps_ftp.h index 800c1c82..0e198476 100644 --- a/motorApp/NewportSrc/xps_ftp.h +++ b/motorApp/NewportSrc/xps_ftp.h @@ -24,6 +24,7 @@ #include #include +#include /******[ 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 }