The RasRenameEntry function changes the name of an entry in a phone book.
DWORD RasRenameEntry(
LPCTSTR lpszPhonebook, // pointer to full path and filename of
// phone-book file
LPCTSTR lpszOldEntry, // pointer to the old entry name
LPCTSTR lpszNewEntry // pointer to the new entry name
);
If the function succeeds, the return value is zero.
If the function fails, the return value is one of the following error codes.
Value | Meaning |
---|---|
ERROR_INVALID_NAME | The lpszNewEntry name is invalid. |
ERROR_ALREADY_EXISTS | An entry with the lpszNewEntry name already exists. |
ERROR_CANNOT_FIND_PHONEBOOK_ENTRY | The phone-book entry does not exist. |
Windows NT: Requires version 4.0 or later.
Windows: Requires Windows 95 OSR2 or later.
Windows CE: Requires version 1.0 or later.
Header: Declared in ras.h.
Import Library: Use rasapi32.lib.
Unicode: Implemented as Unicode and ANSI versions on Windows NT.
Remote Access Service Overview, RAS Server Administration Functions, RasValidateEntryName