Update the osbuild/images to the version which introduces "dot notation" for distro release versions. - Replace all uses of distroregistry by distrofactory. - Delete local version of reporegistry and use the one from the osbuild/images. - Weldr: unify `createWeldrAPI()` and `createWeldrAPI2()` into a single `createTestWeldrAPI()` function`. - store/fixture: rework fixtures to allow overriding the host distro name and host architecture name. A cleanup function to restore the host distro and arch names is always part of the fixture struct. - Delete `distro_mock` package, since it is no longer used. - Bump the required version of osbuild to 98, because the OSCAP customization is using the 'compress_results' stage option, which is not available in older versions of osbuild. Signed-off-by: Tomáš Hozza <thozza@redhat.com>
19 lines
744 B
Go
19 lines
744 B
Go
package winapi
|
|
|
|
const (
|
|
BINDFLT_FLAG_READ_ONLY_MAPPING uint32 = 0x00000001
|
|
BINDFLT_FLAG_MERGED_BIND_MAPPING uint32 = 0x00000002
|
|
BINDFLT_FLAG_USE_CURRENT_SILO_MAPPING uint32 = 0x00000004
|
|
)
|
|
|
|
// HRESULT
|
|
// BfSetupFilter(
|
|
// _In_opt_ HANDLE JobHandle,
|
|
// _In_ ULONG Flags,
|
|
// _In_ LPCWSTR VirtualizationRootPath,
|
|
// _In_ LPCWSTR VirtualizationTargetPath,
|
|
// _In_reads_opt_( VirtualizationExceptionPathCount ) LPCWSTR* VirtualizationExceptionPaths,
|
|
// _In_opt_ ULONG VirtualizationExceptionPathCount
|
|
// );
|
|
//
|
|
//sys BfSetupFilter(jobHandle windows.Handle, flags uint32, virtRootPath *uint16, virtTargetPath *uint16, virtExceptions **uint16, virtExceptionPathCount uint32) (hr error) = bindfltapi.BfSetupFilter?
|