- Timestamp:
- May 19, 2001, 1:16:02 PM (24 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/USER32.DEF
r5606 r5751 1 ; $Id: USER32.DEF,v 1.5 4 2001-04-27 17:36:36sandervl Exp $1 ; $Id: USER32.DEF,v 1.55 2001-05-19 11:16:01 sandervl Exp $ 2 2 3 3 LIBRARY USER32 INITINSTANCE TERMINSTANCE … … 615 615 wvsprintfW = _wvsprintfW@12 @580 616 616 617 TrackMouseEvent = _TrackMouseEvent@4 @600 ;ordinal?? 618 SendInput = _SendInput@12 @601 ;ordinal?? 619 GetGUIThreadInfo = _GetGUIThreadInfo@8 @602 620 617 621 ChangeDisplaySettingsExA = _ChangeDisplaySettingsExA@20 @604 618 622 ChangeDisplaySettingsExW = _ChangeDisplaySettingsExW@20 @605 -
trunk/src/user32/user32.cpp
r5606 r5751 1 /* $Id: user32.cpp,v 1.9 7 2001-04-27 17:36:38sandervl Exp $ */1 /* $Id: user32.cpp,v 1.98 2001-05-19 11:16:01 sandervl Exp $ */ 2 2 3 3 /* … … 2537 2537 return 0; 2538 2538 } 2539 2540 DWORD WIN32API GetGUIThreadInfo(DWORD arg1, DWORD arg2) 2541 { 2542 dprintf(("USER32: GetGUIThreadInfo %x %x - empty stub!!", arg1, arg2)); 2543 2544 return 0; 2545 } 2546 -
trunk/src/user32/winmouse.cpp
r5606 r5751 1 /* $Id: winmouse.cpp,v 1.1 4 2001-04-27 17:36:39sandervl Exp $ */1 /* $Id: winmouse.cpp,v 1.15 2001-05-19 11:16:02 sandervl Exp $ */ 2 2 /* 3 3 * Mouse handler for DINPUT … … 197 197 dwFlags, dx, dy, cButtons, dwExtraInfo)); 198 198 } 199 200 DWORD WIN32API TrackMouseEvent(DWORD param1) 201 { 202 dprintf(("USER32: TrackMouseEvent %x not implemented", param1)); 203 return 0; 204 } 205 206 DWORD WIN32API SendInput(DWORD param1, DWORD param2, DWORD param3) 207 { 208 dprintf(("USER32: SendInput %x %x %x not implemented", param1, param2, param3)); 209 return 0; 210 } 211 199 212 /***************************************************************************** 200 213 * Name : BOOL WIN32API DragDetect -
trunk/src/ws2_32/socket.cpp
r5743 r5751 27 27 { 28 28 /* Create a manual-reset event, with initial state: unsignealed */ 29 TRACE(" \n");29 TRACE("WSACreateEvent"); 30 30 31 31 return CreateEventA(NULL, TRUE, FALSE, NULL); 32 } 33 34 BOOL WINAPI WSASetEvent(WSAEVENT hEvent) 35 { 36 TRACE("WSASetEvent"); 37 return SetEvent(hEvent); 32 38 } 33 39 … … 38 44 BOOL WINAPI WSACloseEvent(WSAEVENT event) 39 45 { 40 TRACE (" event=0x%x\n", event);46 TRACE ("WSACloseEvent event=0x%x\n", event); 41 47 42 48 return CloseHandle(event); … … 80 86 return ( socket (af, type, protocol) ); 81 87 } 88 89 /*********************************************************************** 90 * WSAEnumNetworkEvents 91 */ 92 int WINAPI WSAEnumNetworkEvents(SOCKET s, WSAEVENT hEvent, LPWSANETWORKEVENTS lpEvent) 93 { 94 dprintf(("WSAEnumNetworkEvents %x %x %x NOT IMPLEMENTED", s, hEvent, lpEvent)); 95 SetLastError(WSAEINVAL); 96 return SOCKET_ERROR; 97 } 98 99 /*********************************************************************** 100 * WSAEventSelect 101 */ 102 int WINAPI WSAEventSelect(SOCKET s, WSAEVENT hEvent, LONG lEvent) 103 { 104 TRACE("WSAEventSelect %08x, hEvent %08x, event %08x\n", s, hEvent, (unsigned)lEvent ); 105 SetLastError(WSAEINVAL); 106 return SOCKET_ERROR; 107 } 108 -
trunk/src/ws2_32/ws2_32.def
r5743 r5751 1 ; $Id: ws2_32.def,v 1. 4 2001-05-19 09:06:43sandervl Exp $1 ; $Id: ws2_32.def,v 1.5 2001-05-19 11:15:38 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 85 85 ; WSAEnumNameSpaceProvidersA @34 86 86 ; WSAEnumNameSpaceProvidersW @35 87 ; WSAEnumNetworkEvents@3687 WSAEnumNetworkEvents = _WSAEnumNetworkEvents@12 @36 88 88 ; WSAEnumProtocolsA @37 89 89 ; WSAEnumProtocolsW @38 90 ; WSAEventSelect@3990 WSAEventSelect = _WSAEventSelect@12 @39 91 91 ; WSAGetOverlappedResult @40 92 92 ; WSAGetQOSByName @41 … … 126 126 ; WSASendDisconnect @73 127 127 ; WSASendTo @74 128 ; WSASetEvent@75128 WSASetEvent = _WSASetEvent@4 @75 129 129 ; WSASetServiceA @76 130 130 ; WSASetServiceW @77
Note:
See TracChangeset
for help on using the changeset viewer.