diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-06 10:42:34 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-06 10:42:34 +0200 |
| commit | 4b36306674a8db103d123b079ac00d06e568d57e (patch) | |
| tree | c403a6eb5e8f071760b485fa221c132dd2bbe4ef /core/sys/windows/ws2_32.odin | |
| parent | e870369c972be8054ee50ac441e5713b719c99a1 (diff) | |
Deprecate old @(deprecated) things.
Diffstat (limited to 'core/sys/windows/ws2_32.odin')
| -rw-r--r-- | core/sys/windows/ws2_32.odin | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/sys/windows/ws2_32.odin b/core/sys/windows/ws2_32.odin index 0fc427728..6c68e43f3 100644 --- a/core/sys/windows/ws2_32.odin +++ b/core/sys/windows/ws2_32.odin @@ -242,10 +242,4 @@ foreign ws2_32 { ntohl :: proc(netlong: c_ulong) -> c_ulong --- // [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-ntohs) ntohs :: proc(netshort: c_ushort) -> c_ushort --- - // [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-htonl) - @(deprecated="Use endian specific integers instead, https://odin-lang.org/docs/overview/#basic-types") - htonl :: proc(hostlong: c_ulong) -> c_ulong --- - // [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-htons) - @(deprecated="Use endian specific integers instead, https://odin-lang.org/docs/overview/#basic-types") - htons :: proc(hostshort: c_ushort) -> c_ushort --- } |