ITK Programmer's Guide |
|||||||||||
Table of contents |
Intro | General
| TCP Low Level |
TCP High Level |
UDP | DNS
| PPP
|
ITK_ICCountKeys |
|||||||||||
Syntax: |
nbKeys := ITK_ICCountKeys
|
||||||||||
Description: |
Returns the number of Internet Config keys currently defined.
|
||||||||||
Params: |
|
||||||||||
Example: |
For ($i;1;ITK_ICCountKeys) $keyType := ITK_ICGetIndKey($i) End For |
ITK_ICGetIndKeys |
||||||||||||||||
Syntax: |
icKey := ITK_ICGetIndKey(index)
|
|||||||||||||||
Description: |
Returns the Nth key name.
|
|||||||||||||||
Params: |
|
|||||||||||||||
Example: |
For ($i;1;ITK_ICCountKeys) $keyType := ITK_ICGetIndKey($i) End For |
ITK_ICGetPref |
||||||||||||||||
Syntax: |
prefValue := ITK_ICGetPref(icKey)
|
|||||||||||||||
Description: |
Returns the preference value string associated with one key.
|
|||||||||||||||
Note: |
This routine is valid for preference values stored as
Pascal String (limited to 255 chars)by Internet Config.
|
|||||||||||||||
Params: |
|
|||||||||||||||
Example: |
$userEmail := ITK_ICGetPref("email") |
ITK_ICSetPref |
|||||||||||||||||||||
Syntax: |
error := ITK_ICSetPref(icKey;prefValue)
|
||||||||||||||||||||
Description: |
Sets an Internet Config preference value string associated to a Key.
|
||||||||||||||||||||
Note: |
This routine is valid for preference values stored as
Pascal String (limited to 255 chars) by Internet Config.
|
||||||||||||||||||||
Params: |
|
||||||||||||||||||||
Example: |
$err := ITK_ICSetPref("email";"myname@mydomain.com") |
ITK_ICGetRaw |
||||||||||||||||
Syntax: |
prefValue := ITK_ICGetRaw(icKey)
|
|||||||||||||||
Description: |
Returns the preference value associated with one key.
|
|||||||||||||||
Note: |
This routine is valid for preference values not
stored as Pascal String by Internet Config.
|
|||||||||||||||
Params: |
|
|||||||||||||||
Example: |
$userEmail := ITK_ICGetRaw("signature") |
ITK_ICSetRaw |
|||||||||||||||||||||
Syntax: |
error := ITK_ICSetRaw(icKey;prefValue)
|
||||||||||||||||||||
Description: |
Sets an Internet Config preference value string associated to a Key.
|
||||||||||||||||||||
Note: |
This routine is valid for preference values not
stored as Pascal String by Internet Config.
|
||||||||||||||||||||
Params: |
|
||||||||||||||||||||
Example: |
$err := ITK_ICSetPref("signature";$sig) |