Platform SDK: RAS/Routing and RAS |
The RasDeleteEntry function deletes an entry from a phone book.
DWORD RasDeleteEntry( LPCTSTR lpszPhonebook, // pointer to full path and file name of // phone-book file LPCTSTR lpszEntry // pointer to an entry name to delete );
If the function succeeds, the return value is ERROR_SUCCESS.
If the function fails, the return value is ERROR_INVALID_NAME.
The following sample code deletes the phone-book entry specified by the variable lpszEntry.
nRet = RasDeleteEntry(NULL, lpszEntry); if (nRet != ERROR_SUCCESS) { printf("RasDeleteEntry failed: Error = %d\n", nRet); } else { printf("Entry %s deleted successfully\n", lpszEntry); }
Windows NT/2000: Requires Windows NT 4.0 or later.
Windows 95/98: Requires Windows 95 OSR2 or later.
Header: Declared in Ras.h.
Library: Use Rasapi32.lib.
Unicode: Implemented as Unicode and ANSI versions on Windows NT/2000.
Remote Access Service (RAS) Overview, Remote Access Service Functions, RasCreatePhonebookEntry, RasEnumEntries