1234567891011121314151617181920212223242526272829 |
- using System;
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
-
-
-
-
-
-
-
-
- public delegate bool LPFN_CONNECTEX(
- IntPtr s,
- byte[] name,
- int namelen,
- IntPtr lpSendBuffer,
- int dwSendDataLength,
- out int lpdwBytesSent,
- IntPtr lpOverlapped
- );
- }
- }
|