| 10 | osidbg::WrappedFunction<SOCKET(int, int, int)> WrappedSocket; |
| 11 | |
| 12 | SOCKET WSAAPI SocketWrapper( |
| 13 | _In_ int af, |
| 14 | _In_ int type, |
| 15 | _In_ int protocol |
| 16 | ) |
| 17 | { |
| 18 | Debug(L"socket"); |
| 19 | return WrappedSocket(af, type, protocol); |
| 20 | } |
| 21 | |
| 22 | int SendWrapper( |
| 23 | _In_ SOCKET s, |