Skip to content

Commit

Permalink
Fix MAX_SOCKETS integer literals debacle
Browse files Browse the repository at this point in the history
  • Loading branch information
wqweto committed Feb 27, 2021
1 parent 21d173d commit 0ebeeda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cAsyncSocket.cls
Expand Up @@ -276,7 +276,7 @@ Private Const STR_HELPER_NAME As String = "AsyncSocket Helper Window"
Private Const STR_CHR1 As String = "" '--- CHAR(1)
Private Const DEF_TIMEOUT As Long = 5000
'--- helper window
Private Const MAX_SOCKETS As Long = &HC000 - WM_SOCKET_NOTIFY
Private Const MAX_SOCKETS As Long = &HC000& - WM_SOCKET_NOTIFY

Private m_hSocket As Long
Private m_pCleanup As IUnknown
Expand Down

0 comments on commit 0ebeeda

Please sign in to comment.