| 65 |
function GetErrorMsg: string; |
function GetErrorMsg: string; |
| 66 |
procedure MakeError(Session: TDolibSession; Error: DWORD); |
procedure MakeError(Session: TDolibSession; Error: DWORD); |
| 67 |
procedure DOLIB_LOGIN(Proxy: string; Port: Integer; ID: string; Pass: string); |
procedure DOLIB_LOGIN(Proxy: string; Port: Integer; ID: string; Pass: string); |
| 68 |
procedure ForcedDOLIB_LOGIN(Proxy: string; Port: Integer; ID: string; Pass: string); |
procedure ForcedDOLIB_LOGIN(Proxy: string; Port: Integer; ID: string; Pass: string); |
| 69 |
public |
public |
| 70 |
constructor Create; |
constructor Create; |
| 71 |
destructor Destroy; override; |
destructor Destroy; override; |
| 72 |
function Connect: boolean; |
function Connect: boolean; |
| 73 |
function ForcedConnect: boolean; //SSL障害用強制ログイン |
function ForcedConnect: boolean; //SSL障害用強制ログイン |
| 74 |
function Disconnect: boolean; |
function Disconnect: boolean; |
| 75 |
property ProxyAddress: string read FProxyAddress write FProxyAddress; |
property ProxyAddress: string read FProxyAddress write FProxyAddress; |
| 76 |
property ProxyPort: integer read FProxyPort write FProxyPort; |
property ProxyPort: integer read FProxyPort write FProxyPort; |
| 95 |
// DOLIB_2CH_UA = 'X-2ch-UA: gikoNavi/1.00'#13#10; |
// DOLIB_2CH_UA = 'X-2ch-UA: gikoNavi/1.00'#13#10; |
| 96 |
DOLIB_ENOMEM_STRING = 'メモリが足りません。'; |
DOLIB_ENOMEM_STRING = 'メモリが足りません。'; |
| 97 |
DOLIB_LOGIN_ERROR = 'ERROR:'; |
DOLIB_LOGIN_ERROR = 'ERROR:'; |
| 98 |
//https://2chv.tora3.net/futen.cgi |
// https://2chv.tora3.net/futen.cgi |
| 99 |
|
|
| 100 |
{ TDolib } |
{ TDolib } |
| 101 |
|
|
| 102 |
constructor TDolib.Create; |
constructor TDolib.Create; |