mirror of
https://github.com/reactos/wine.git
synced 2025-01-22 03:49:02 +00:00
2ace16ac08
Sun Apr 28 14:32:43 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [Makefile.in] Subdir memory is now also compiled for Winelib, in order to get the Win32 heap functions. * [if1632/Makefile.in] Renamed winprocs and winprocs32 to wprocs and wprocs32 to avoid DLL names > 8 characters. * [loader/builtin.c] (New file) Grouped all built-in DLLs code in a single file. * [memory/global.c] Use the Win32 heap code instead of malloc() to allocate linear memory. This will help test the heap code. * [memory/local.c] Fixed FreeSelector() to clear DS and ES correctly for huge blocks. * [tools/build.c] [if1632/relay.c] Removed 'id' directive in spec files. For relay debugging, the DLL entry point is now computed from the CS:IP entry point address. Added 'heap' directive to specifiy a local heap for the DLL. USER and GDI heap are now created this way. * [windows/class.c] [include/class.h] Changed the class structure to use pointers instead of handles. Changed Get/SetClassWord/Long to use a switch statement; this allows changing the layout of the CLASS structure. * [windows/win.c] [include/win.h] Use a CLASS * instead of a handle for the window class. Sat Apr 27 18:10:11 Martin von Loewis <loewis@informatik.hu-berlin.de> * [if1632/kernel32.spec] [memory/global.c] [win32/memory.c] [win32/process.c] GetProcessAffinityMask,GlobalLock,IsBadReadPtr,IsBadWritePtr, LocalLock,SetThreadAffinityMask: new relays. * [win32/cursoricon32.c] Return same handle if a cursor is loaded multiple times. Sat Apr 27 15:13:37 1996 Bang Jun Young <bangjy@nownuri.nowcom.co.kr> * [resources/sysres_Ko.rc] Added support for Korean [Ko] language. Fri Apr 26 00:49:05 1996 Huw D. M. Davies <h.davies1@physics.oxford.ac.uk> * [objects/dc.c] [objects/font.c] Fixed problem with SaveDC()/RestoreDC() and font cache 'used' count. * [objects/metafile.c] [objects/dcvalues.c] Fixed broken SetTextAlign() on metafiles. * [objects/metafile.c] Delete objects in handle table at end of PlayMetaFile(). Wed Apr 24 19:21:01 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [if1632/ver.spec] [misc/ver.c] [include/ver.h] (New files) VER.DLL (partially) implemented (VerFindFile,VerInstallFile) [If it doesn't work for you, use -dll -ver and report it to me] * [if1632/user32.spec] [if1632/kernel32.spec] [if1632/shell.spec] [if1632/shell32.spec] [misc/ole2nls.c] [windows/message.c] [windows/graphics.c] Simple win32 functions, where we can just use the win16 counterpart. Misc. stubs. * [misc/lstr.c] Someone reported a _lstrlen(NULL). NULL is a valid argument. Fixed. * [misc/registry.c] Some alloclens were off by 1, one double fclose() fixed. Requesting value 0 of a key with no values returns an error (should we always return a made up value NULL? what does win3.1?) Tue Apr 23 17:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu> * [misc/shell.c] Implemented FindEnvironmentString(), DoEnvironmentSubst(), ExtractIcon(), InternalExtractIcon() and ExtractAssociatedIcon(). * [misc/user.c] Do extensive cleanup on application exit. * [windows/hook.c] [windows/win.c] [windows/class.c] Added miscellaneous cleanup routines. * [controls/menu.c] More efficient popup menu window handling. Mon Apr 22 21:35:22 1996 Albrecht Kleine <kleine@ak.sax.de> * [include/windows.h][objects/oembitmap.c][include/bitmaps/obm_trtype] Added "TT-bitmap" for later usage in a ChooseFont() ownerdraw combobox.
62 lines
2.9 KiB
Ruby
62 lines
2.9 KiB
Ruby
#
|
|
# File: winsock.def
|
|
# System: MS-Windows 3.x
|
|
# Summary: Module definition file for Windows Sockets DLL.
|
|
#
|
|
name winsock
|
|
type win16
|
|
|
|
1 pascal16 accept(word ptr ptr) WINSOCK_accept
|
|
2 pascal16 bind(word ptr word) WINSOCK_bind
|
|
3 pascal16 closesocket(word) WINSOCK_closesocket
|
|
4 pascal16 connect(word ptr word) WINSOCK_connect
|
|
5 pascal16 getpeername(word ptr ptr) WINSOCK_getpeername
|
|
6 pascal16 getsockname(word ptr ptr) WINSOCK_getsockname
|
|
7 pascal16 getsockopt(word word word ptr ptr) WINSOCK_getsockopt
|
|
8 pascal htonl(long) WINSOCK_htonl
|
|
9 pascal16 htons(word) WINSOCK_htons
|
|
10 pascal inet_addr(ptr) WINSOCK_inet_addr
|
|
11 pascal inet_ntoa(long) WINSOCK_inet_ntoa
|
|
12 pascal16 ioctlsocket(word long ptr) WINSOCK_ioctlsocket
|
|
13 pascal16 listen(word word) WINSOCK_listen
|
|
14 pascal ntohl(long) WINSOCK_ntohl
|
|
15 pascal16 ntohs(word) WINSOCK_ntohs
|
|
16 pascal16 recv(word ptr word word) WINSOCK_recv
|
|
17 pascal16 recvfrom(word ptr word word ptr ptr) WINSOCK_recvfrom
|
|
18 pascal16 select(word ptr ptr ptr ptr ptr) WINSOCK_select
|
|
19 pascal16 send(word ptr word word) WINSOCK_send
|
|
20 pascal16 sendto(word ptr word word ptr ptr) WINSOCK_sendto
|
|
21 pascal16 setsockopt(word word word ptr word) WINSOCK_setsockopt
|
|
22 pascal16 shutdown(word word) WINSOCK_shutdown
|
|
23 pascal16 socket(word word word) WINSOCK_socket
|
|
51 pascal gethostbyaddr(ptr word word) WINSOCK_gethostbyaddr
|
|
52 pascal gethostbyname(ptr) WINSOCK_gethostbyname
|
|
53 pascal getprotobyname(ptr) WINSOCK_getprotobyname
|
|
54 pascal getprotobynumber(word) WINSOCK_getprotobynumber
|
|
55 pascal getservbyname(ptr ptr) WINSOCK_getservbyname
|
|
56 pascal getservbyport(word ptr) WINSOCK_getservbyport
|
|
57 pascal gethostname(ptr word) WINSOCK_gethostname
|
|
101 pascal16 WSAAsyncSelect(word word word long) WSAAsyncSelect
|
|
102 pascal16 WSAAsyncGetHostByAddr(word word ptr word word ptr word)
|
|
WSAAsyncGetHostByAddr
|
|
103 pascal16 WSAAsyncGetHostByName(word word ptr ptr word)
|
|
WSAAsyncGetHostByName
|
|
104 pascal16 WSAAsyncGetProtoByNumber(word word word ptr word)
|
|
WSAAsyncGetProtoByNumber
|
|
105 pascal16 WSAAsyncGetProtoByName(word word ptr ptr word)
|
|
WSAAsyncGetProtoByName
|
|
106 pascal16 WSAAsyncGetServByPort(word word word ptr ptr word)
|
|
WSAAsyncGetServByPort
|
|
107 pascal16 WSAAsyncGetServByName(word word ptr ptr ptr word)
|
|
WSAAsyncGetServByName
|
|
108 pascal16 WSACancelAsyncRequest(word) WSACancelAsyncRequest
|
|
109 pascal16 WSASetBlockingHook() WSASetBlockingHook
|
|
110 pascal16 WSAUnhookBlockingHook() WSAUnhookBlockingHook
|
|
111 pascal16 WSAGetLastError() WSAGetLastError
|
|
112 pascal WSASetLastError(word) WSASetLastError
|
|
113 pascal16 WSACancelBlockingCall() WSACancelBlockingCall
|
|
114 pascal16 WSAIsBlocking() WSAIsBlocking
|
|
115 pascal WSAStartup(word ptr) WSAStartup
|
|
116 pascal WSACleanup() WSACleanup
|
|
151 pascal16 __WSAFDIsSet(word ptr) WSAFDIsSet
|