1234567891011121314151617181920212223242526272829303132333435363738 |
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
- public struct MMCKINFO
- {
-
-
-
- public int ckID;
-
-
-
- public int cksize;
-
-
-
- public int fccType;
-
-
-
- public int dwDataOffset;
-
-
-
- public int dwFlags;
- }
- }
- }
|