123456789101112131415161718192021222324252627 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct WSABUF
- {
-
-
-
- public int len;
-
-
-
- public IntPtr buf;
- }
- }
- }
|