search for: lang_neutral

Displaying 5 results from an estimated 5 matches for "lang_neutral".

2012 May 04
0
[PATCH] add (errnum) in front of windows error messages
...r *dst, int length) { #endif const char *winerror(int err) { - static char buf[1024], *newline; + static char buf[1024], *ptr; + + ptr = buf + sprintf(buf, "(%d) ", err); if (!FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, - NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), buf, sizeof(buf), NULL)) { - strncpy(buf, "(unable to format errormessage)", sizeof(buf)); + NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), ptr, sizeof(buf) - (ptr - buf), NULL)) { + strcpy(ptr, "(unable to format errormessage)"); }; - if(...
2011 Jul 08
0
Wine release 1.3.24
...tables more compact. include: Remove duplicate device caps definitions. msvcp90/tests: Fix the calling convention of some function pointers. winex11: Pass a generic PHYSDEV to all graphics entry points. winex11: Use the HDC from the gdi_physdev structure. widl: Support LANG_NEUTRAL as a valid lcid in typelibs. Alistair Leslie-Hughes (6): mscoree: Define interface IManagedObject. msxml3: Improve namespace tests to highlight get nodeName issue. msxml3: clang corrections. oleaut32: COM Cleanup ICreateTypeLib2Imp. oledb32: Add DBTYPE_UI2 support to...
2017 Nov 09
10
Experiment on how to improve our temporary file handing.
Currently a power failure or other hard crash can cause lld leave a temporary file around. The same is true for other llvm tools. As an example, put a breakpoint in Writer.cpp:236 ("writeBuildId()") and restart the run a few times. You will get t.tmp43a735a t.tmp4deeabb t.tmp9bacdd3 t.tmpe4115c4 t.tmpeb01fff The same would happen if there was a fatal error between the
2008 Dec 20
0
Wine release 1.1.11
...static. userenv/tests: Make userenv_dbgstr_w() static. kernel32: Remove _hread16() as it is not used. Move _hwrite16() next to the other related functions. wininet & winhttp: Remove the MSG_WAITALL definition as it is not needed. devenum: French and German should use SUBLANG_NEUTRAL. ole32: Use the IStream16_(CreateStream,CreateStorage,Write) implementations. cmd: Make WCMD_DumpCommands() static. d3d8: Make D3D8CB_CreateSurface() static. port: S_IWUSR and S_IX* are not needed. Remove them. msiexec: Make KillService() static. winapi_check: Ad...
2008 Aug 22
0
Wine release 1.1.3
...d. gdiplus: GdipSetStringFormatDigitSubstitution implemented. gdiplus: GdipStringFormatGetGenericTypographic implemented. gdiplus: GdipGetStringFormatTabStopCount implementation with tests. gdiplus: Implemented Gdip[Get/Set]StringFormatTabStops with tests. gdiplus: Use LANG_NEUTRAL instead of 0. gdiplus: Implemented GdipStringFormatGetGenericDefault with tests. gdiplus: Implemented Gdip[Get/Set]PenMode. gdiplus: Implemented GdipGetPenCustom[Start/End]Cap. gdiplus: Implemented GdipFillPolygon2/GdipFillPolygon2I. gdiplus: Move some Beziers helpers...