Développement et API
Voici le code minimum nécessaire à la création d'un Serveur PcHelpWare exécutable.
Cet exemple lance une connexion loopback sur le port 5500.
Veuillez consulter le forum US pour obtenir plus d'informations.
#include
#include
typedef void (__declspec(dllimport) *STARTSERVER)(char *, char *,char *,int,char *);
//void Start_server(char *ID, char *repeater,char *direct,int port,char *passwd,bool proxy);
//BETA7 typedef void (__declspec(dllimport) *STARTSERVER)(char *, char *,char *,int,char *,bool);
int main(int argc, char* argv[])
{
HMODULE hDLL = LoadLibrary ("1SCDLL.dll");
STARTSERVER pStart_server;
if (hDLL != NULL)
{
pStart_server = (STARTSERVER) GetProcAddress(hDLL,"Start_server");
if (!pStart_server)
{
// handle the error
FreeLibrary(hDLL);
return 0;
}
else
{
// call the function
pStart_server("","","localhost",5500,"");
// Beta 7 pStart_server("","","localhost",5500,"",0);
}
}
return 0;
}