Share

acedGetFullInput

C++

inline int acedGetFullInput(
    ACHAR *& pStr
);

File

acedads.h

Description

Deprecated. Function acedGetFullInput() is an alternate form of acedGetInput(). Instead of truncating any characters beyond the 131, acedGetFullInput() 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 acedGetInput().

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 acedGetInput() for more information.

Parameters

Parameters Description
pStr Output pointer to new copy of keyword

Use Instead

ACCORE_PORT int acedGetInput(AcString & sOut);

Was this information helpful?