KernelBasePathCchAppendEx Method
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("KernelBase.dll", CharSet = CharSet.Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true)]
public static HResult PathCchAppendEx(
StringBuilder buffer,
uint bufferSize,
string more,
PathOptions flags
)
<DllImportAttribute("KernelBase.dll", CharSet := CharSet.Auto, BestFitMapping := false,
ThrowOnUnmappableChar := true>]
Public Shared Function PathCchAppendEx (
buffer As StringBuilder,
bufferSize As UInteger,
more As String,
flags As PathOptions
) As HResult
Dim buffer As StringBuilder
Dim bufferSize As UInteger
Dim more As String
Dim flags As PathOptions
Dim returnValue As HResult
returnValue = KernelBase.PathCchAppendEx(buffer,
bufferSize, more, flags)
public:
[DllImportAttribute(L"KernelBase.dll", CharSet = CharSet::Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true)]
static HResult PathCchAppendEx(
StringBuilder^ buffer,
unsigned int bufferSize,
String^ more,
PathOptions flags
)
[<DllImportAttribute("KernelBase.dll", CharSet = CharSet.Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true)>]
static member PathCchAppendEx :
buffer : StringBuilder *
bufferSize : uint32 *
more : string *
flags : PathOptions -> HResult
No code example is currently available or this language may not be supported.
- buffer StringBuilder
-
A pointer to a buffer that, on entry, contains the original path.
When this function returns successfully, the buffer contains the original path plus the appended path.
- bufferSize UInt32
-
The size of the buffer pointed to by buffer, in characters.
- more String
-
A pointer the path to append to the end of the path pointed to by pszPath.
UNC paths and paths that begin with the sequence \?\ are accepted and recognized as fully-qualified paths.
These paths replace the string pointed to by buffer instead of being appended to it.
- flags PathOptions
-
Flags that determine how to append the path.
HResult
If this function succeeds, it returns
S_OK.
Otherwise, it returns an
HResult code.