-
Notifications
You must be signed in to change notification settings - Fork 552
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔥 Remove useless Stream plug + implement shutdown plug
- Loading branch information
1 parent
3a35ed9
commit f33a693
Showing
2 changed files
with
16 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using IL2CPU.API.Attribs; | ||
using System; | ||
using System.Net.Sockets; | ||
|
||
namespace Cosmos.Core_Plugs.Interop | ||
{ | ||
[Plug("Interop+Winsock, System.Net.Sockets", IsOptional = true)] | ||
class WinsockImpl | ||
{ | ||
[PlugMethod(Signature = "System_Net_Sockets_SocketError__Interop_Winsock_shutdown_System_Net_Sockets_SafeSocketHandle__System_Int32_")] | ||
public static SocketError shutdown(SafeSocketHandle socketHandle, int how) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.