search for: dword_ptr

Displaying 11 results from an estimated 11 matches for "dword_ptr".

2008 Apr 14
10
wine asio
Does wine asio still work with the current version of WINE? I tried installing it per the instructions and it didn't want to make.
2016 Jul 11
0
[PATCH] wave_out: fix casts
...t.c b/src/wave_out.c index 57b5703..0f871b9 100644 --- a/src/wave_out.c +++ b/src/wave_out.c @@ -71,7 +71,7 @@ Box ( const char* msg ) */ static void CALLBACK -wave_callback ( HWAVE hWave, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2 ) +wave_callback ( HWAVEOUT hWave, UINT uMsg, DWORD_PTR dwInstance, DWORD_PTR dwParam1, DWORD_PTR dwParam2 ) { if ( uMsg == WOM_DONE ) { EnterCriticalSection ( &cs ); @@ -125,7 +125,7 @@ Set_WIN_Params ( FILE_T dummyFile , outFormat.nBlockAlign = (outFormat.wBitsPerSample + 7) / 8 * outFormat.nChannels; outFormat.nAvgBytesPerSec = ou...
2009 Feb 13
0
Wine release 1.1.15
...eW removed redundant NULL check (Coverity). winegcc: Added some strarray_free() (Coverity). Michael Stefaniuc (29): jscript: Remove superfluous pointer casts. wined3d: Remove some unused defines. wined3d: Remove superfluous pointer casts. include: Change some DWORD to DWORD_PTR in mmddk.h. twain_32/tests: Don't leak memory on an error path (Smatch). include: Change some DWORD to DWORD_PTR in msacm.h. include: Remove struct PORTALLOC from mmddk.h. include: Change some DWORD to DWORD_PTR in msacmdrv.h. user32/tests: Remove superfluous point...
2005 Dec 09
6
New Winecfg crash
I updated my copy of WINE CVS today, and now if I click the audio tab in Winecfg, I'm getting this on my Mandrake 2006 machine. *** glibc detected *** free(): invalid pointer: 0x7c0a6cd0 *** wine: Assertion failed at address 0xffffe410 (thread 0009), starting debugger... This happens everytime I run winecfg and click the audio tab. Clicking the other tabs works fine. I've updated to
2011 Nov 02
3
[LLVMdev] [PATCH] LLVM 3.0 broken in lib/Support/Windows/DynamicLibrary.inc
...6000) + #define OLD_ELM_CALLBACK_DECL 1 + #endif +#elif defined(__MINGW64__) + // Use new callback. +#elif defined(__MINGW32__) + #define OLD_ELM_CALLBACK_DECL 1 +#endif + +#ifdef OLD_ELM_CALLBACK_DECL + static BOOL CALLBACK ELM_Callback(PSTR ModuleName, + DWORD_PTR ModuleBase, + ULONG ModuleSize, + PVOID UserContext) +#else + static BOOL CALLBACK ELM_Callback(PCSTR ModuleName, + DWORD_PTR ModuleBase, ULONG ModuleSize,...
2009 Feb 27
0
Wine release 1.1.16
...s improper placement of directory selection text 17507 Scrollbars are inappropriately displayed in Ascentive Library Files installer ---------------------------------------------------------------- Changes since 1.1.15: Adam Stoelting (2): msadp32.acm: Changed pointer cast from DWORD to DWORD_PTR. winemp3.acm: Changed pointer cast from DWORD to DWORD_PTR. Alexandre Julliard (76): ntdll: Avoid null dereference in the NtCreateSymbolicLinkObject trace. ntdll: Improve debugging helper for object attributes structure. ntdll: Don't fail in NtMapViewOfSection for 4Gb+...
2006 Oct 27
0
Wine release 0.9.24
...x the join algorithm. comctl32: Move code assuming Nx1 into ImageList_CreateImage. msi: Remove redundant null checks before MSI_EvaluateCondition. msi: Avoid crashing if writeout_cabinet_stream fails. Miko?aj Zalewski (37): comctl32: toolbar: Change the dwData from DWORD to DWORD_PTR. comctl32: toolbar: Don't try to redraw buttons outside of the clipping rect. comctl32: toolbar: Use nHotItem not nOldHit for the hot item in MouseLeave. comctl32: toolbar: Test and improve TB_SETHOTITEM. comctl32: rebar: bUnicode and NtfUnicode should be the same....
2008 Nov 07
0
Wine release 1.1.8
...casts of void pointers and zero. shlwapi: Remove superfluous casts of/to void pointers. comdlg32: Remove superfluous casts of void pointers to other pointer types. comctl32: Remove superfluous casts that crept in as well as some older ones. crypt32: Fix the aligning up to a DWORD_PTR boundary. Nicolas Le Cam (7): msi/tests: Fix a failing test on all platforms up to and including win2k. wininet/tests: Fix a failing test on IE6. shell32/tests: Fix a test on several platforms. user32: Partially implement SystemParametersInfo(SPI_{GET/SET}FOREGROUNDLOCKTIME...
2007 Sep 14
0
Wine release 0.9.45
...the the PSDK types. winscard: Update win32.api to fix the winapi_check warnings. shlwapi: Move SHAddDataBlock() to the front and remove the forward declaration. shlwapi: Update win32.api to fix the winapi_check warnings. wininet: Fix many wininet prototypes: the context is a DWORD_PTR now. wininet: Remove the occasional parameter name in the prototypes. winedbg: Detach from the debuggee before exiting. bcrypt: Add a skeleton bcrypt.h header and use it. winedbg: 'winedbg --auto' and 'winedbg --minidump' should detach when done so as to not...
2010 Sep 03
0
Wine release 1.3.2
...device letter. winmm: MCI open always creates an alias for subsequent commands. winmm: Close MCI device after immediate auto-open commands. winmm: Always unload the MCI driver when Open fails. winmm/tests: Add a few Open/Close MCI tests. winmm/tests: MCI_STATUS returns DWORD_PTR, unlike other commands. winmm/tests: Add MCI parser tests. winmm/tests: Share common function dbg_mcierr. winmm: Correctly parse the MCI Sysinfo command. winmm: GetDeviceID only considers a single name per entry. winmm: Implement MCIERR_DUPLICATE_ALIAS and MCIERR_DEVIC...
2006 Oct 13
0
Wine release 0.9.23
...er: Return the data for callback results in the varargs part of the get_message request. server: Pass the data for message callbacks as vararg from the client side. server: Rearrange a few fields to avoid wasting padding space on 64 bits. user32: The per-window user data must be a DWORD_PTR. ntdll: Fixed typo in serial.c. user32: Store the prev_unicode hook flag on the client side. server: Changed the get_next_hook request to allow retrieving the current hook too. dinput: Only register the window class once to avoid race conditions. winex11.drv: Give XIni...