FindPackagesByPackageFamily function kernel32
Finds the packages with the specified family name for the current user.
LONG FindPackagesByPackageFamily(
PCWSTR packageFamilyName,
UINT32 packageFilters,
UINT32 *count,
PWSTR *packageFullNames,
UINT32 *bufferLength,
WCHAR *buffer,
UINT32 *packageProperties
);
Implementation
int FindPackagesByPackageFamily(
Pointer<Utf16> packageFamilyName,
int packageFilters,
Pointer<Uint32> count,
Pointer<Pointer<Utf16>> packageFullNames,
Pointer<Uint32> bufferLength,
Pointer<Utf16> buffer,
Pointer<Uint32> packageProperties,
) => _FindPackagesByPackageFamily(
packageFamilyName,
packageFilters,
count,
packageFullNames,
bufferLength,
buffer,
packageProperties,
);