Group: Remote Access Service (RAS) - Library: rasapi32
The RasGetCountryInfo function retrieves country-specific dialing information from the Windows Telephony list of countries.
Retrieving country-specific dialing information from the Windows Telephony list of countries
DWORD RasGetCountryInfo(
LPRASCTRYINFO lpRasCtryInfo,
// buffer that receives country information
LPDWORD lpdwSize // size, in bytes, of the buffer
); DECLARE INTEGER RasGetCountryInfo IN rasapi32;
STRING @ lpRasCtryInfo,;
INTEGER @ lpdwSize
lpRasCtryInfo [in, out] Pointer to a RASCTRYINFO structure that, on output, receives the country-specific dialing information followed by additional bytes for a country description string.
lpdwSize [in, out] Pointer to a variable that, on input, specifies the size, in bytes, of the buffer pointed to by the lpRasCtryInfo parameter.
If the function succeeds, the return value is zero.
For more information about country-specific dialing information and Telephony Application Programming Interface (TAPI) country identifiers, see the TAPI portion of the Platform SDK.
Home