5490eaa2dd
- aggiunta lettura Serial Number anche per chiavi di rete.
24 lines
910 B
C++
24 lines
910 B
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2022-2024
|
|
//----------------------------------------------------------------------------
|
|
// File : NetDongleId.h Data : 09.04.24 Versione : 2.6d2
|
|
// Contenuto : Dichiarazione funzioni locali per gestione/calcolo Id chiave.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 16.05.22 DS Creazione modulo.
|
|
// 09.10.23 DS Aggiunto parametro IndirizzoPorta.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//-------------------------------------------------------------------------------
|
|
bool GetNetDongleId( int nNetUserId, const std::string& sAddrPort, std::string& sDongleId) ;
|
|
bool NetDongleConnect( int nNetUserId, const std::string& sAddrPort) ;
|
|
bool GetNetDongleSN( int& nDongleSN) ;
|
|
bool NetDongleClose( void) ;
|
|
bool NetDongleNotFound( void) ;
|