2012-03-23 09:53:09 +00:00
|
|
|
#ifndef SSADLL_H
|
|
|
|
#define SSADLL_H
|
|
|
|
|
|
|
|
#ifndef SSA_EXPORT
|
|
|
|
#define DECLSPEC __declspec(dllimport)
|
|
|
|
#else
|
|
|
|
#define DECLSPEC __declspec(dllexport)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
DECLSPEC const char* SSA_DecodificaUltimoErrore();
|
|
|
|
DECLSPEC int SSA_VerificaModulo(const char* prodotto, const char* modulo);
|
|
|
|
DECLSPEC int SSA_Login(const char* idClient, const char* prodotto);
|
|
|
|
DECLSPEC int SSA_ApriModulo(const char* idClient, const char* modulo);
|
|
|
|
DECLSPEC int SSA_ChiudiModulo(const char* idClient, const char* modulo);
|
|
|
|
DECLSPEC int SSA_Logout(const char* idClient, const char* prodotto);
|
|
|
|
DECLSPEC int SSA_Ping(const char* idClient);
|
|
|
|
|
|
|
|
DECLSPEC int SSA_XMLProdottiConfigurati(char* buf, int bufSize);
|
|
|
|
DECLSPEC int SSA_XMLUtentiCorrenti(char* buf, int bufSize);
|
|
|
|
DECLSPEC int SSA_Id(char* buf, int bufSize);
|
|
|
|
DECLSPEC int SSA_NumeroSerie(const char* prodotto);
|
2012-04-13 15:04:00 +00:00
|
|
|
DECLSPEC int SSA_DataScadenza(const char* prodotto, const char* modulo);
|
|
|
|
DECLSPEC int SSA_NumMaxUtenti(const char* prodotto, const char* modulo);
|
2012-03-23 09:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|