GetCurrentPackageFullName function kernel32
Gets the package full name for the calling process.
LONG GetCurrentPackageFullName(
[in, out] UINT32 *packageFullNameLength,
[out, optional] PWSTR packageFullName
);
Implementation
int GetCurrentPackageFullName(
Pointer<Uint32> packageFullNameLength,
Pointer<Utf16> packageFullName,
) => _GetCurrentPackageFullName(packageFullNameLength, packageFullName);