summary refs log tree commit diff stats
path: root/lib/windows/winlean.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/windows/winlean.nim')
-rw-r--r--lib/windows/winlean.nim16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/windows/winlean.nim b/lib/windows/winlean.nim
index 6f72319ba..42571b789 100644
--- a/lib/windows/winlean.nim
+++ b/lib/windows/winlean.nim
@@ -334,6 +334,13 @@ const
 
 proc WSAGetLastError*(): cint {.importc: "WSAGetLastError", dynlib: ws2dll.}
 
+when hostCPU == "amd64":
+  type
+    TSocketHandle* = distinct int # on WIN64 `SOCKET` is UINT_PTR
+else:
+  type
+    TSocketHandle* = distinct cuint # on WIN32 `SOCKET` is U_INT (unsigned int)
+
 type
   TWSAData* {.pure, final, importc: "WSADATA", header: "Winsock2.h".} = object 
     wVersion, wHighVersion: int16
@@ -409,16 +416,9 @@ type
 
   Tsocklen* = cuint
 
-when hostCPU == "amd64":
-  type
-    TSocketHandle* = distinct int # on WIN64 `SOCKET` is UINT_PTR
-else:
-  type
-    TSocketHandle* = distinct cuint # on WIN32 `SOCKET` is U_INT (unsigned int)
-
 var
   SOMAXCONN* {.importc, header: "Winsock2.h".}: cint
-  INVALID_SOCKET* {.importc, header: "Winsock2.h".}: cint
+  INVALID_SOCKET* {.importc, header: "Winsock2.h".}: TSocketHandle
 
 proc `==`*(x, y: TSocketHandle): bool {.borrow.}