Patch level : 12.0 no-patch

Files correlati     : 
Commento            : Aggiunte funzioni per richiesta versione

git-svn-id: svn://10.65.10.50/branches/R_10_00@24184 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
mtollari 2017-11-08 11:38:50 +00:00
parent 4b42de3952
commit b71d03efc0
3 changed files with 7 additions and 3 deletions

View File

@ -13,6 +13,7 @@
#define NOT_INITIALIZED -86552
#define ERROR_FREEZED -883
#define SQLAPIV "SQLAPI++ 4.1.5" // Da tenere aggiornato
DBDLL enum TT_driver
{

View File

@ -1,7 +1,10 @@
#include "xvturl.h"
#include <curl/curl.h>
void functionTest()
URLDLL const char* xvturl_version()
{
bool tolla = true;
static char version[50];
if(version[0] == '\0')
sprintf_s(version, "cURL %s", LIBCURL_VERSION);
return version;
}

View File

@ -7,6 +7,6 @@
#include <string>
URLDLL void functionTest();
URLDLL const char* xvturl_version();
#endif