AccountInfo
From LIVECHAT Developer Zone Wiki
Used to pass information about settings of protocol plugin.
typedef struct AccountInfo{
int cbSize;
LPCTSTR uin;
LPCTSTR password;
LPCTSTR server;
UINT port;
bool ssl;
LPCTSTR proxy_addr;
UINT proxy_port;
LPCTSTR proxy_login;
LPCTSTR proxy_password;
} AccountInfo;
- Members
- cbSize
- size of the AccountInfo structure
- uin
- user identify number
- password
- user password for the protocol
- server
- server address
- port
- server port
- ssl
- connect using ssl
- proxy_addr
- proxy server address
- proxy_port
- proxy server port
- proxy_login
- proxy server login
- proxy_password
- proxy server password
