Changeset 3009
- Timestamp:
- Mar 4, 2000, 8:55:39 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
changelog (modified) (2 diffs)
-
src/winmm/dwaveout.cpp (modified) (3 diffs)
-
src/wsock32/makefile (modified) (2 diffs)
-
src/wsock32/relaywin.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r3000 r3009 1 /* $Id: changelog,v 1.7 79 2000-03-04 19:37:40 jeroenExp $ */1 /* $Id: changelog,v 1.780 2000-03-04 19:50:51 sandervl Exp $ */ 2 2 3 3 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl> … … 15 15 16 16 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl> 17 - WINMM: Fixed bug in setsockopt for SO_LINGER (options size wasn't 18 adjusted) 19 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir) 20 Partially fixed destruction of loaded dlls in ExitProcess 21 (TODO: dependencies are not yet right; needs new design) 22 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES) 23 to hmdevio.cpp 24 - USER32: Pass on keyboard messages if dinput handler returns TRUE 25 Also send non-client mouse messages to dinput 26 (TODO: always returns true after calling dinput handler) 27 - OPENGL\GLIDE: 28 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES) 29 to hmdevio.cpp (reported by Michal Necasek) 17 30 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't 18 31 adjusted) -
trunk/src/winmm/dwaveout.cpp
r2985 r3009 1 /* $Id: dwaveout.cpp,v 1.1 7 2000-03-03 19:18:46 sandervl Exp $ */1 /* $Id: dwaveout.cpp,v 1.18 2000-03-04 19:55:06 sandervl Exp $ */ 2 2 3 3 /* … … 25 25 #include <string.h> 26 26 #define OS2_ONLY 27 #include "win32type.h"27 #include <win32api.h> 28 28 #include <wprocess.h> 29 29 … … 41 41 #define max(a, b) ((a > b) ? a : b) 42 42 #endif 43 44 //SvL: 23/09/99: WinPostMsg no longer works, as win32 window handles are no longer PM handles45 BOOL WIN32API PostMessageA(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);46 43 47 44 LONG APIENTRY WaveOutHandler(ULONG ulStatus, PMCI_MIX_BUFFER pBuffer, ULONG ulFlags); -
trunk/src/wsock32/makefile
r2712 r3009 1 # $Id: makefile,v 1.1 8 2000-02-09 23:47:06 birdExp $1 # $Id: makefile,v 1.19 2000-03-04 19:55:39 sandervl Exp $ 2 2 3 3 # … … 16 16 17 17 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) 18 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) 18 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) 19 19 20 20 -
trunk/src/wsock32/relaywin.cpp
r2992 r3009 42 42 #include <wprocess.h> 43 43 #include <heapstring.h> 44 #include <win32 wnd.h>44 #include <win32api.h> 45 45 #include "wsock32.h" 46 46 … … 58 58 static char* ODIN_WSOCK_RELAY_CLASS = "ODIN_WSOCK_RELAY"; 59 59 static HWND hwndRelay = NULLHANDLE; 60 61 // prototype for PostMessageA62 BOOL __stdcall PostMessageA(HWND,UINT,ULONG,ULONG);63 60 64 61
Note:
See TracChangeset
for help on using the changeset viewer.
