extctype.h Tolti riferimenti ed inclusioni hardlock libdefs.h Tolti riferimenti ed inclusioni hardlock isamrpc.* Cambiato il protocollo di richiesta moduli attivi in rete git-svn-id: svn://10.65.10.50/trunk@6185 c028cbd2-c16b-5b4b-a496-9718f37d4682
29 lines
666 B
C
Executable File
29 lines
666 B
C
Executable File
#ifndef __ISAMRPC_H
|
|
#define __ISAMRPC_H
|
|
|
|
#ifndef __ARRAY_H
|
|
#include <array.h>
|
|
#endif
|
|
|
|
#ifndef __REAL_H
|
|
#include <real.h>
|
|
#endif
|
|
|
|
bool rpc_Call(const char* cmd);
|
|
char* rpc_Request(const char* cmd, unsigned long& size, real& time);
|
|
|
|
bool rpc_DongleHasModule(word af);
|
|
bool rpc_DongleModules(TBit_array& ba);
|
|
word rpc_DongleNumber();
|
|
word rpc_DongleYear();
|
|
|
|
bool rpc_UserLogin(const char* server, const char* user,
|
|
const char* password, const char* application);
|
|
bool rpc_UserLogout();
|
|
|
|
|
|
bool rpc_Start();
|
|
bool rpc_Stop();
|
|
|
|
#endif
|