A voir également:
- Wsock32.dll / VB6 / recv / blockage
- Vb6 - Télécharger - Divers Utilitaires
- Xinput1_3.dll - Forum Windows
- Advapi32.dll ccleaner - Forum Windows 7
- CCleaner détecte dll manquantes ✓ - Forum Windows
- %Systemroot%\system32\shell32.dll - Forum Windows
1 réponse
Bon, j'ai trouvé la solution au probleme.
Dans wsock32.dll il y a une fonction qui permet de contrôler le comportement de la fonction recv. C'est IOCTLSOCKET
Declare Function ioctlsocket Lib "wsock32.dll" (ByVal s As Long, _
ByVal cmd As Long, _
argp As Long) As Long
Pour le mode non bloquant, utiliser pour cmd FIONBIO=&h8004667E.
xval
Dans wsock32.dll il y a une fonction qui permet de contrôler le comportement de la fonction recv. C'est IOCTLSOCKET
Declare Function ioctlsocket Lib "wsock32.dll" (ByVal s As Long, _
ByVal cmd As Long, _
argp As Long) As Long
Pour le mode non bloquant, utiliser pour cmd FIONBIO=&h8004667E.
xval