12345678910111213141516171819202122232425262728293031 |
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct COPYDATASTRUCT
- {
-
-
-
- public int dwData;
-
-
-
- public int cbData;
-
-
-
- [MarshalAs(UnmanagedType.LPStr)]
- public string lpData;
- }
- }
- }
|