Beispiel #1
0
 internal static extern bool MetadataChainWriteWithCallbacksAndTempFile(
     MetadataChainHandle handle,
     [MarshalAs(UnmanagedType.Bool)] bool usePadding,
     IntPtr ioHandle,
     IoCallbacks callbacks,
     IntPtr tempIoHandle,
     IoCallbacks tempCallbacks);
Beispiel #2
0
 internal static extern void MetadataIteratorInit(
     MetadataIteratorHandle handle,
     MetadataChainHandle chainHandle);
Beispiel #3
0
 internal static extern bool MetadataChainReadWithCallbacks(
     MetadataChainHandle handle,
     IntPtr ioHandle,
     IoCallbacks callbacks);
Beispiel #4
0
 internal static extern bool MetadataChainCheckIfTempFileNeeded(
     MetadataChainHandle handle,
     [MarshalAs(UnmanagedType.Bool)] bool usePadding);
Beispiel #5
0
 internal MetadataIterator(MetadataChainHandle chainHandle) =>
Beispiel #6
0
 internal MetadataIterator([NotNull] MetadataChainHandle chainHandle)
 {
     SafeNativeMethods.MetadataIteratorInit(_handle, chainHandle);
 }
Beispiel #7
0
 internal static extern void MetadataIteratorInit(
     [NotNull] MetadataIteratorHandle handle,
     [NotNull] MetadataChainHandle chainHandle);
Beispiel #8
0
 internal static extern bool MetadataChainWriteWithCallbacks(
     [NotNull] MetadataChainHandle handle,
     [MarshalAs(UnmanagedType.Bool)] bool usePadding,
     IntPtr ioHandle,
     IoCallbacks callbacks);
 internal MetadataIterator([NotNull] MetadataChainHandle chainHandle) =>