NAME

StrDupA  (SHLWAPI.@)

SYNOPSIS

 LPSTR StrDupA
 (
  LPCSTR lpszStr
 )

DESCRIPTION

Duplicate a string.

PARAMS

lpszStr [In] String to duplicate.

RETURNS

Success: A pointer to a new string containing the contents of lpszStr

Failure: NULL, if memory cannot be allocated.

NOTES

The string memory is allocated with LocalAlloc, and so should be released by calling LocalFree.

IMPLEMENTATION

Defined in "shlwapi.h".

Implemented in "dlls/shlwapi/string.c". source.winehq.org/source/dlls/shlwapi/string.c

Debug channel "shell".


Copyright © 2007 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Mar 2007.