mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 07:08:48 +00:00
Fix doc links
This commit is contained in:
@@ -206,12 +206,12 @@ foreign ws2_32 {
|
|||||||
optval: ^c_char,
|
optval: ^c_char,
|
||||||
optlen: ^c_int,
|
optlen: ^c_int,
|
||||||
) -> c_int ---
|
) -> c_int ---
|
||||||
// https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-ntohl
|
// [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-ntohl)
|
||||||
ntohl :: proc(netlong: c_ulong) -> c_ulong ---
|
ntohl :: proc(netlong: c_ulong) -> c_ulong ---
|
||||||
// https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-ntohs
|
// [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-ntohs)
|
||||||
ntohs :: proc(netshort: c_ushort) -> c_ushort ---
|
ntohs :: proc(netshort: c_ushort) -> c_ushort ---
|
||||||
// https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-htonl
|
// [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-htonl)
|
||||||
htonl :: proc(hostlong: c_ulong) -> c_ulong ---
|
htonl :: proc(hostlong: c_ulong) -> c_ulong ---
|
||||||
// https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-htons
|
// [MS-Docs](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-htons)
|
||||||
htons :: proc(hostshort: c_ushort) -> c_ushort ---
|
htons :: proc(hostshort: c_ushort) -> c_ushort ---
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user