Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
WATSOCK.DEF
Package: watsock.zip [view]
Upload User: qiye66666
Upload Date: 2007-01-03
Package Size: 202k
Code Size: 2k
Category:
TCP/IP Stack
Development Platform:
Visual C++
- ;
- ; File: watsock.def
- ; System: MS-Windows 3.x
- ; Summary: Module definition file for Windows Sockets DLL.
- ;
- LIBRARY WATSOCK ; Application's module name
- DESCRIPTION 'BSD Socket API for Windows'
- EXETYPE WINDOWS ; required for all windows applications
- ;CODE can be FIXED in memory because of potential upcalls
- CODE PRELOAD FIXED
- ;DATA must be SINGLE and at a FIXED location since this is a DLL
- DATA PRELOAD FIXED SINGLE
- HEAPSIZE 4096
- STACKSIZE 16083 ;Not necessary, since DLL uses caller's stack
- ; All functions that will be called by any Windows routine
- ; must be exported. Any additional exports beyond those defined
- ; here must have ordinal numbers 1000 or above.
- EXPORTS
- wat_closesocket @3
- wat_connect @4
- wat_htonl @8
- wat_htons @9
- wat_inet_addr @10
- wat_ntohl @14
- wat_ntohs @15
- wat_receive @16
- wat_select @18
- wat_send @19
- wat_socket @23
- wat_gethostbyname @52
- wattcp_init @53
- wat_test @54
- wat_WSACleanup @55
- ;eof