// wiautil.h
HRESULT wiauStrC2C(
[in] CHAR *pszSrc,
[out] CHAR *pszDst,
INT iSize
);
View the official Windows Driver Kit DDI referenceNo description available.
The wiauStrC2C function copies an ANSI character string to another ANSI character string.
pszSrc [in]Points to the ANSI string to be copied.
pszDst [out]Pointer to a memory location that receives the copied string
iSizeSpecifies the size, in bytes, of the buffer pointed to by pszDst.
On success, the function returns S_OK. If the function fails, it returns a standard COM error.