C++
inline int acedGetFullKword( const ACHAR * pString, ACHAR *& pStr );
File
acedads.h
Description
Deprecated. Function acedGetFullKword() is an alternate form of acedGetKword(). Instead of truncating any characters beyond the 131, acedGetFullKword() returns a new copy of the entire string using acutUpdString() and updates pStr to point to the new copy. Aside from the manner in which it returns the input string, this function behaves exactly like acedGetKword().
The caller is responsible for freeing the returned string using acutDelString().
This function returns the same error codes as acedGetInput(). If there is insufficient memory for a copy of the string, this function returns RTERROR.
See function acedGetKword() for more information.
Parameters
Parameters | Description |
---|---|
pString | Input prompt string |
pStr | Output pointer to new copy of keyword entered |
Use Instead
ACCORE_PORT int acedGetKword(const ACHAR * prompt, AcString & sResult);