You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
627 B
55 lines
627 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
tapiCountry.h
|
|
|
|
Abstract:
|
|
|
|
Utility functions for working with TAPI
|
|
|
|
Environment:
|
|
Server
|
|
|
|
Revision History:
|
|
|
|
09/18/96 -davidx-
|
|
Created it.
|
|
|
|
dd-mm-yy -author-
|
|
description
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _TAPICOUNTRY_H_
|
|
#define _TAPICOUNTRY_H_
|
|
|
|
|
|
#include <tapi.h>
|
|
#include <shellapi.h>
|
|
|
|
|
|
//
|
|
// Init a list of countries
|
|
//
|
|
|
|
BOOL
|
|
GetCountries(
|
|
VOID
|
|
);
|
|
|
|
|
|
//
|
|
// Return the list of country
|
|
//
|
|
|
|
|
|
LPLINECOUNTRYLIST
|
|
GetCountryList(
|
|
);
|
|
|
|
#endif // !_TAPICOUNTRY_H_
|
|
|