search for: outputdebugstring

Displaying 14 results from an estimated 14 matches for "outputdebugstring".

2003 May 05
1
R-1.7.0: Rproxy.dll loadlibrary/freelibrary error (PR#2914)
...ME from registry // 03-04-07 | baier | check registry key on failure even if R_HOME is set, // check PATH if everything else fails. trace failures! int loadDll() { static char lTraceBuffer[TRACEBUFSIZE]; // get entry-point if (getenv ("R_HOME")) { // BDR OutputDebugString("from env:"); char DLLlocation[MAX_PATH]; strcpy(DLLlocation, getenv("R_HOME")); strcat(DLLlocation, "\\bin\\"); strcat(DLLlocation, RDLL); OutputDebugString(DLLlocation); m_ProxyModule = LoadLibraryEx (DLLlocation, NULL, LOAD_WITH_ALTERE...
2011 Feb 28
1
[LLVMdev] [cfe-dev] [PATCH] Windows improvements
...see the grouping of errors, include stacks and notes (msvc mode > only). It seems it would be better functionally. But please remember Microsoft's toolchain would not be the only one. Also mingw depends on LLVM_ON_WIN32. (in llvm side). For now, I don't have better answer. > llvm-outputdebugstring-support.patch: > clang-visual-studio-debuggability.patch: > > Visual Studio has no good way of getting stdout and stderr output into its > Output Window. Getting these into the Output Window can be really helpful > for debugging as you can go to diagnostics locations directly from th...
2006 Nov 06
4
Errno::EBADF (Bad file descriptor)
I posted this to the discussion forum on rubyforge.org, but it appears that it would have been better to post here. Does anyone have any advice on how to resolve the problem reported at http://rubyforge.org/tracker/index.php?func=detail&aid=6284&group_id=1306&atid=5145? Thanks, Justin -------------- next part -------------- An HTML attachment was scrubbed... URL:
2004 Mar 06
3
access violation in ov_open using VC6
I passed a valid FILE* (from fopen() with "rb") and the address of an OggVorbis_File struct, but an access violation occured when ov_open is called. I have enabled the Multithreaded, but it still doesn't fix the problem. I look at the vorbis_comment.exe source and I see vcedit_open() function and other vcedit_*() functions everywhere. I am assuming that there is known issue with VC
2017 Jan 06
1
[PATCH 5/5] win_utf8_io: Avoid forbidden functions when building for WinRT/UWP
...Again, doesn't work with older MSVS and MinGW. > DWORD out; > int ret; > @@ -202,6 +206,11 @@ static int wprint_console(FILE *stream, const > wchar_t *text, size_t len) > if (ret < 0) > return ret; > return len; > +#else > + (void)stream; > + OutputDebugStringW(text); > + return len; > +#endif > } Why OutputDebugStringW? MSDN says in <https://msdn.microsoft.com/en-us/library/windows/desktop/aa363362(v=vs.85).aspx>: "Sends a string to the debugger for display. [...] If the application has no debugger, the system debugger display...
2005 Aug 30
0
No subject
...y to make sure that your code is actually run and causing the crash. I have never tried to use the wine debugger with a winelib program... Let's see : debugger/winedbg programs/uninstaller/uninstaller It works. What gives for your app ? If debugger won't work for you, you can always add an OutputDebugString at the first line of your app and run with -debugmsg +debugstr Gerard
2006 Dec 07
0
Fwd: win32-service problems with patch
...(SERVICE_RUNNING, NO_ERROR, 0, 0); + SetEvent(hStartEvent); + // Main loop for the service. while(WaitForSingleObject(hStopEvent, 1000) != WAIT_OBJECT_0) { } + // Main loop for the service. + while(WaitForSingleObject(hStopCompletedEvent, 1000) != WAIT_OBJECT_0) + { + OutputDebugString(TEXT("service_main: waiting for stop completed event\n")); + } + // Stop the service. SetTheServiceStatus(SERVICE_STOPPED, NO_ERROR, 0, 0); } @@ -97,10 +91,10 @@ return result; } -VALUE Ruby_Service_Ctrl() +VALUE Ruby_Service_Ctrl(VALUE self) { while (WaitForSingleOb...
2010 Aug 07
3
C++ runtime error
Greetings, I'm having a slight error with a certain program in wine. I'm using RPG Maker XP to make an rpg game. It utilizes a modified version of ruby called RGSS. I am using a script that opens a debug output console, it works fine in M$ Windows, but I get the following error in wine: > Microsoft Visual C++ Runtime Library > Runtime Error! > > Program:
2010 Jul 09
0
Wine release 1.2-rc7
...rashes with "wine client error: partial write" 16863 Control drwaing over each other in very simple dotnet application 17239 Fiesta does not work - D3D issue? 18210 Fallout 3: game hangs after childbirth 18475 Fallout 3: No sound device detected. Fallout 3 cannot run. 18924 OutputDebugString does not do what it's supposed to do 19659 EverQuest 2: EQ2 Crashed shortly after entering game. 20650 Wargames crashes instantly if choosing hardware mode (rather than Software Rasterizer) 21422 winedbg cannot find local symbols in EXE. 22213 The Witcher, Enhanced edition crashes...
2018 Jun 26
0
Wine release 3.0.2
...39;t cache the base URL. Henri Verbeet (1): winex11: Restore the X11DRV_FLUSH_GL_DRAWABLE XFlush() for setups without OML_sync_control. Huw D. M. Davies (1): winebuild: On x86_64, save xmm0 - 3 during the delayed import lookup. Ivan Kalvachev (1): kernel32: Add DECL_HOTPATCH to OutputDebugString functions. Jarkko Korpi (1): kernel32: Silence repeated LocaleNameToLCID unsupported flags. Johann Frei (1): dinput: Implement X/Y axis granularity and add test. Louis Lenders (9): ntdll: Update version resource. kernel32/tests: Add simple test for SetThreadUILanguage....
2017 Jan 06
8
[PATCH 0/5] Allow multiple targets to be disabled
Hi, This patchet allows a few targets to be disabled when unrequired. The rational is coming from VLC's contrib buildsystem, so far we use make -C to select only some subparts of the available targets. It would be easier and cleaner to use autoconf to do so IMHO. There's an additional patch which fixes the build when building for WinRT/UWP platform, upstreamed from VLC. We have a couple
2014 Jun 27
0
Wine release 1.7.21
...Lackner (23): kernel32: Update VirtualAddress of resource section in write_raw_resources. msvcr110: Fix typo in exported symbol _set_SSE2_enable. user32: Avoid race-condition when unloading module while hook is still active. kernel32: Raise DBG_PRINTEXCEPTION_C exception in OutputDebugStringA. wininet: Don't update *lpdwIndex if HttpQueryInfoW fails with ERROR_INSUFFICIENT_BUFFER. ntdll/tests: Add exception tests for RtlUnwind on i386. ntdll/tests: Use an EXCEPTION_REGISTRATION_RECORD array to prevent compiler from reordering variables. ntdll/tests: Run cras...
2018 Apr 13
0
Wine release 3.6
...ned3d: Select the correct texture level in draw_textured_quad(). wined3d: Invalidate the texture's U/V address modes in draw_textured_quad(). Huw D. M. Davies (1): user32: Avoid using the comma operator in a while condition. Ivan Kalvachev (1): kernel32: Add DECL_HOTPATCH to OutputDebugString functions. Jacek Caban (10): windowscodecs: Store bitmap patterns in bitmap decoder info object. windowscodecs: Directly use patterns stored in component info object in IWICBitmapDecoderInfo::MatchesPattern implementation. windowscodecs: Store container formats in metadata compon...
2009 Oct 09
0
Wine release 1.1.31
...n SystemParametersInfo. user32: Accept SPI_GET/SETMOUSEVANISH parameters in SystemParametersInfo. ntdll: Accept ProcessDebugObjectHandle in QueryInformationProcess. kernel32: Catch invalid memory accesses in resource enumeration handlers. kernel32: Always use ANSI version of OutputDebugString. kernel32: Send debug strings to system-wide monitor. ntdll: Handle invalid pointers in NtQueryInformationProcess(ProcessDebugObjectHandle). ntdll: Add stub for NtSetInformationThread(ThreadHideFromDebugger). Andr? Hentschel (4): jscript: Update German translation. wi...