wine
16 years agoquartz: Bump the amount of time in the referenceclock test slightly.
Steven Edwards [Fri, 15 Feb 2008 13:48:27 +0000 (08:48 -0500)] 
quartz: Bump the amount of time in the referenceclock test slightly.

16 years agoinclude: Fix the C_ASSERT macro to not generate an unused variable warning when compi...
Rob Shearman [Fri, 15 Feb 2008 15:44:19 +0000 (15:44 +0000)] 
include: Fix the C_ASSERT macro to not generate an unused variable warning when compiling with gcc.

Provide a fallback case for other compilers to avoid C_ASSERT being
undefined and causing an error.

16 years agoAdd a new convenience macro for an exception handler that handles all exceptions.
Rob Shearman [Fri, 15 Feb 2008 15:43:24 +0000 (15:43 +0000)] 
Add a new convenience macro for an exception handler that handles all exceptions.

When using native compiler exceptions, the previous method of doing
this, __EXCEPT(NULL), would expand to __except(
(NULL)(GetExceptionInformation())) which doesn't compile as NULL isn't a
function.

So add a new macro, __EXCEPT_ALL, which works correctly both when using
native compiler exceptions and without and which makes the meaning of
code in which it is used clearer.

16 years agouser32: Fix MonitorFromRect to cope with the absence of the MONITOR_DEFAULTTONEAREST...
Rob Shearman [Fri, 15 Feb 2008 15:22:44 +0000 (15:22 +0000)] 
user32: Fix MonitorFromRect to cope with the absence of the MONITOR_DEFAULTTONEAREST flag.

Previously, the code would return any monitor found, regardless of
whether it intersected the given rect or was the nearest monitor. This
is fixed by adding a new flag that causes monitor_enum to only find the
nearest monitor if MONITOR_DEFAULTTONEAREST is specified.

Also add a trace for MonitorFromWindow, since it is called in many
places within user32 and so can't be traced using a relay trace.

16 years agoDon't use GetExceptionCode and GetExceptionInformation in exception filter functions.
Rob Shearman [Fri, 15 Feb 2008 15:19:29 +0000 (15:19 +0000)] 
Don't use GetExceptionCode and GetExceptionInformation in exception filter functions.

When using native compiler exceptions, it isn't valid to use
GetExceptionCode and GetExceptionInformation anywhere other than in the
filter or handler blocks since it would be very hard for the compiler to
work out where to retrieve the exception information from on the stack.

Therefore, remove the WINE_EXCEPTION_FILTER and WINE_FINALLY_FUNC macros
which enabled GetExceptionCode, GetExceptionInformation and
AbnormalTermination to be used inside of the functions they declared and
fix up all callers to access the information directly.

16 years agobrowseui: Remove WINAPI from functions that don't need it.
Alexandre Julliard [Sat, 16 Feb 2008 13:05:32 +0000 (14:05 +0100)] 
browseui: Remove WINAPI from functions that don't need it.

16 years agobrowseui: Add undocumented Component Category Cache Daemon stub.
Maarten Lankhorst [Mon, 11 Feb 2008 18:18:07 +0000 (10:18 -0800)] 
browseui: Add undocumented Component Category Cache Daemon stub.

16 years agoinclude: Add IRunnableTask interface.
Maarten Lankhorst [Mon, 11 Feb 2008 18:14:00 +0000 (10:14 -0800)] 
include: Add IRunnableTask interface.

16 years agoREADME: Update some outdated information.
Austin English [Fri, 15 Feb 2008 22:14:36 +0000 (16:14 -0600)] 
README: Update some outdated information.

16 years agomsvfw32: Created Dutch translations.
Frans Kool [Fri, 15 Feb 2008 22:27:10 +0000 (23:27 +0100)] 
msvfw32: Created Dutch translations.

16 years agonet: Created Dutch translations.
Frans Kool [Fri, 15 Feb 2008 22:41:33 +0000 (23:41 +0100)] 
net: Created Dutch translations.

16 years agocredui: Created Dutch translations.
Frans Kool [Fri, 15 Feb 2008 21:50:26 +0000 (22:50 +0100)] 
credui: Created Dutch translations.

16 years agobrowseui: Created Dutch translations.
Frans Kool [Fri, 15 Feb 2008 20:53:32 +0000 (21:53 +0100)] 
browseui: Created Dutch translations.

16 years agoxcopy: Created Dutch translations.
Frans Kool [Fri, 15 Feb 2008 15:12:52 +0000 (16:12 +0100)] 
xcopy: Created Dutch translations.

16 years agolocalui: Created Dutch translations.
Frans Kool [Fri, 15 Feb 2008 19:57:10 +0000 (20:57 +0100)] 
localui: Created Dutch translations.

16 years agowinhelp: Added missing Dutch translations.
Frans Kool [Fri, 15 Feb 2008 14:24:49 +0000 (15:24 +0100)] 
winhelp: Added missing Dutch translations.

16 years agowineconsole: Added missing Dutch translations.
Frans Kool [Fri, 15 Feb 2008 14:17:23 +0000 (15:17 +0100)] 
wineconsole: Added missing Dutch translations.

16 years agoprogman: Added missing LGPL-license in Dutch translations.
Frans Kool [Fri, 15 Feb 2008 13:58:27 +0000 (14:58 +0100)] 
progman: Added missing LGPL-license in Dutch translations.

16 years agomshtml: Added missing Dutch translations.
Frans Kool [Fri, 15 Feb 2008 13:49:53 +0000 (14:49 +0100)] 
mshtml: Added missing Dutch translations.

16 years agourlmon: Check the return value of ReadFile and return INET_E_DOWNLOAD_FAILURE is...
Rob Shearman [Fri, 15 Feb 2008 10:09:25 +0000 (10:09 +0000)] 
urlmon: Check the return value of ReadFile and return INET_E_DOWNLOAD_FAILURE is it fails.

Initialise *pcbRead to zero, if the parameter is not NULL.

16 years agowininet: Fix the return value check of SHGetSpecialFolderPathW in URLCacheContainers_...
Rob Shearman [Fri, 15 Feb 2008 10:06:38 +0000 (10:06 +0000)] 
wininet: Fix the return value check of SHGetSpecialFolderPathW in URLCacheContainers_CreateDefaults.

It returns a BOOL, not an HRESULT.

16 years agowininet: Fix an off-by-one error in the boundary checks in HTTP_DecodeBase64.
Rob Shearman [Fri, 15 Feb 2008 10:06:32 +0000 (10:06 +0000)] 
wininet: Fix an off-by-one error in the boundary checks in HTTP_DecodeBase64.

16 years agourlmon: Fix the character count passed into MultiByteToWideChar in HttpProtocol_Start.
Rob Shearman [Fri, 15 Feb 2008 10:06:26 +0000 (10:06 +0000)] 
urlmon: Fix the character count passed into MultiByteToWideChar in HttpProtocol_Start.

16 years agoshell32: Fix character count passed into lstrcpnA in SHGetDataFromIDListA.
Rob Shearman [Fri, 15 Feb 2008 10:06:13 +0000 (10:06 +0000)] 
shell32: Fix character count passed into lstrcpnA in SHGetDataFromIDListA.

16 years agoshell32: Fix the character count passed into LoadStringW in ISFHelper_fnAddFolder.
Rob Shearman [Fri, 15 Feb 2008 10:06:20 +0000 (10:06 +0000)] 
shell32: Fix the character count passed into LoadStringW in ISFHelper_fnAddFolder.

16 years agocomctl32: Remove some more useless asserts.
Rob Shearman [Fri, 15 Feb 2008 10:06:04 +0000 (10:06 +0000)] 
comctl32: Remove some more useless asserts.

16 years agocomctl32: Fix the character count passed to GetWindowTextW in TREEVIEW_Command.
Rob Shearman [Fri, 15 Feb 2008 10:05:48 +0000 (10:05 +0000)] 
comctl32: Fix the character count passed to GetWindowTextW in TREEVIEW_Command.

16 years agocomctl32: Remove a useless assert from TREEVIEW_GetItemIndex.
Rob Shearman [Fri, 15 Feb 2008 10:05:41 +0000 (10:05 +0000)] 
comctl32: Remove a useless assert from TREEVIEW_GetItemIndex.

16 years agocomctl32: Fix the character count passed into LoadStringW from propsheet functions.
Rob Shearman [Fri, 15 Feb 2008 10:05:36 +0000 (10:05 +0000)] 
comctl32: Fix the character count passed into LoadStringW from propsheet functions.

16 years agocrypt32: Vista doesn't actually add duplicate usage identifiers; fix tests and change...
Juan Lang [Thu, 14 Feb 2008 18:54:51 +0000 (10:54 -0800)] 
crypt32: Vista doesn't actually add duplicate usage identifiers; fix tests and change Wine to match.

16 years agocrypt32: Allow some last errors set by Vista.
Juan Lang [Thu, 14 Feb 2008 18:36:16 +0000 (10:36 -0800)] 
crypt32: Allow some last errors set by Vista.

16 years agocrypt32: Fix a test failure on Vista, and make Wine match the newer (and saner) behavior.
Juan Lang [Thu, 14 Feb 2008 18:33:09 +0000 (10:33 -0800)] 
crypt32: Fix a test failure on Vista, and make Wine match the newer (and saner) behavior.

16 years agocrypt32: Add to error message to track down NT4 failures.
Juan Lang [Thu, 14 Feb 2008 18:28:41 +0000 (10:28 -0800)] 
crypt32: Add to error message to track down NT4 failures.

16 years agocrypt32: Fix test failures on NT4.
Juan Lang [Thu, 14 Feb 2008 18:17:54 +0000 (10:17 -0800)] 
crypt32: Fix test failures on NT4.

16 years agoadvapi32: Fix CryptVerifySignatureW test failures on Win98SE and NT4.
Juan Lang [Thu, 14 Feb 2008 18:12:21 +0000 (10:12 -0800)] 
advapi32: Fix CryptVerifySignatureW test failures on Win98SE and NT4.

16 years agoAssorted spelling fixes.
Francois Gouget [Wed, 13 Feb 2008 21:11:01 +0000 (22:11 +0100)] 
Assorted spelling fixes.

16 years agowined3d: Fix memcpy with wrong size parameter to simple assignment in GetScissorRect.
Rico Schüller [Wed, 13 Feb 2008 19:55:43 +0000 (20:55 +0100)] 
wined3d: Fix memcpy with wrong size parameter to simple assignment in GetScissorRect.

16 years agokernel32: On Mac OS, recompose the Unicode strings we get from the OS.
Alexandre Julliard [Fri, 15 Feb 2008 11:07:56 +0000 (12:07 +0100)] 
kernel32: On Mac OS, recompose the Unicode strings we get from the OS.

16 years agolibwine: Add option for Unicode composition in utf-8 -> wchar conversion.
Alexandre Julliard [Fri, 15 Feb 2008 11:06:58 +0000 (12:06 +0100)] 
libwine: Add option for Unicode composition in utf-8 -> wchar conversion.

16 years agolibwine: Abstract part of the utf8 char decoding to a separate function.
Alexandre Julliard [Fri, 15 Feb 2008 11:06:42 +0000 (12:06 +0100)] 
libwine: Abstract part of the utf8 char decoding to a separate function.

16 years agocrypt32: Assign to structs instead of using memcpy.
Andrew Talbot [Wed, 13 Feb 2008 21:16:19 +0000 (21:16 +0000)] 
crypt32: Assign to structs instead of using memcpy.

16 years agocomdlg32: Rename some identifiers to reflect their width.
Andrew Talbot [Wed, 13 Feb 2008 21:16:22 +0000 (21:16 +0000)] 
comdlg32: Rename some identifiers to reflect their width.

16 years agoadvapi32/tests: Check that a credential type is supported before testing it. Test...
Francois Gouget [Wed, 13 Feb 2008 21:10:55 +0000 (22:10 +0100)] 
advapi32/tests: Check that a credential type is supported before testing it. Test CRED_TYPE_DOMAIN_VISIBLE_PASSWORD credentials. Factorize the CredentialBlob checks.

16 years agoadvapi32/tests: Factorize the password constants.
Francois Gouget [Wed, 13 Feb 2008 21:07:08 +0000 (22:07 +0100)] 
advapi32/tests: Factorize the password constants.

16 years agoadvapi32: Add a rudimentary implementation of CredGetSessionTypes().
Francois Gouget [Wed, 13 Feb 2008 21:06:44 +0000 (22:06 +0100)] 
advapi32: Add a rudimentary implementation of CredGetSessionTypes().

16 years agoadvapi32: Add some missing CRED_TYPE_XXX constants.
Francois Gouget [Wed, 13 Feb 2008 21:05:49 +0000 (22:05 +0100)] 
advapi32: Add some missing CRED_TYPE_XXX constants.

16 years agobrowseui: Implement PROGDLG_NOMINIMIZE.
Mikołaj Zalewski [Wed, 13 Feb 2008 14:28:20 +0000 (15:28 +0100)] 
browseui: Implement PROGDLG_NOMINIMIZE.

16 years agobrowseui: aclmulti: Follow the Windows Vista behavious in Expand.
Mikołaj Zalewski [Wed, 13 Feb 2008 17:24:55 +0000 (18:24 +0100)] 
browseui: aclmulti: Follow the Windows Vista behavious in Expand.

16 years agobrowseui/tests: make the ACLMulti test pass under Windows Vista.
Mikołaj Zalewski [Wed, 13 Feb 2008 17:24:19 +0000 (18:24 +0100)] 
browseui/tests: make the ACLMulti test pass under Windows Vista.

16 years agoexplorer: Add meaningful titles to virtual desktop windows.
Christian Authmann [Wed, 13 Feb 2008 13:43:17 +0000 (14:43 +0100)] 
explorer: Add meaningful titles to virtual desktop windows.

16 years agoinclude: Added some defines for EnumDevicesBySemantics.
Marcus Meissner [Sun, 10 Feb 2008 18:32:19 +0000 (19:32 +0100)] 
include: Added some defines for EnumDevicesBySemantics.

16 years agogdiplus: draw_polyline never sets status from GenericError to Ok on successful calls.
Royal Chan [Sun, 10 Feb 2008 20:40:52 +0000 (12:40 -0800)] 
gdiplus: draw_polyline never sets status from GenericError to Ok on successful calls.

16 years agosystray: Better validate icon owner.
Kirill K. Smirnov [Thu, 7 Feb 2008 15:23:56 +0000 (15:23 +0000)] 
systray: Better validate icon owner.

16 years agosystray: Correctly handle icon addition/deletion.
Kirill K. Smirnov [Thu, 7 Feb 2008 15:23:54 +0000 (15:23 +0000)] 
systray: Correctly handle icon addition/deletion.

16 years agosystray: Avoid modifying non-existent tooltip windows of non-existent icon windows...
Kirill K. Smirnov [Thu, 7 Feb 2008 15:23:52 +0000 (15:23 +0000)] 
systray: Avoid modifying non-existent tooltip windows of non-existent icon windows when application updates tip of hidden icon.

16 years agouser32: Improve the combo tests to check when the CBN_SELCHANGE notification is sent.
Reece H. Dunn [Sun, 10 Feb 2008 19:00:02 +0000 (19:00 +0000)] 
user32: Improve the combo tests to check when the CBN_SELCHANGE notification is sent.

16 years agod3d9: Assign to struct instead of using memcpy.
Andrew Talbot [Thu, 14 Feb 2008 22:02:31 +0000 (22:02 +0000)] 
d3d9: Assign to struct instead of using memcpy.

16 years agodbghelp: Assign to struct instead of using memcpy.
Andrew Talbot [Thu, 14 Feb 2008 22:02:25 +0000 (22:02 +0000)] 
dbghelp: Assign to struct instead of using memcpy.

16 years agoshdoclc: Added missing Dutch translations.
Frans Kool [Thu, 14 Feb 2008 22:18:39 +0000 (23:18 +0100)] 
shdoclc: Added missing Dutch translations.

16 years agooledlg: Added missing Dutch translations.
Frans Kool [Thu, 14 Feb 2008 22:03:56 +0000 (23:03 +0100)] 
oledlg: Added missing Dutch translations.

16 years agonotepad: Added missing LGPL License in Dutch translations.
Frans Kool [Thu, 14 Feb 2008 21:44:18 +0000 (22:44 +0100)] 
notepad: Added missing LGPL License in Dutch translations.

16 years agompr: Added Dutch translations.
Frans Kool [Thu, 14 Feb 2008 21:30:49 +0000 (22:30 +0100)] 
mpr: Added Dutch translations.

16 years agocmdlgtst: Added missing Dutch translations.
Frans Kool [Thu, 14 Feb 2008 21:20:03 +0000 (22:20 +0100)] 
cmdlgtst: Added missing Dutch translations.

16 years agowinecfg: Added missing Dutch translations.
Frans Kool [Thu, 14 Feb 2008 21:06:14 +0000 (22:06 +0100)] 
winecfg: Added missing Dutch translations.

16 years agocmd: Added & corrected Dutch translations.
Frans Kool [Thu, 14 Feb 2008 20:49:55 +0000 (21:49 +0100)] 
cmd: Added & corrected Dutch translations.

16 years agotaskmgr: Corrected Dutch translations.
Frans Kool [Thu, 14 Feb 2008 09:23:02 +0000 (10:23 +0100)] 
taskmgr: Corrected Dutch translations.

16 years agomsi/tests: Services are not available on win9x.
Paul Vriens [Thu, 14 Feb 2008 16:30:55 +0000 (17:30 +0100)] 
msi/tests: Services are not available on win9x.

16 years agowidl: Guard the inclusion of unistd.h.
Rob Shearman [Thu, 14 Feb 2008 15:35:46 +0000 (15:35 +0000)] 
widl: Guard the inclusion of unistd.h.

16 years agowidl: Remove unused headers.
Rob Shearman [Thu, 14 Feb 2008 15:35:40 +0000 (15:35 +0000)] 
widl: Remove unused headers.

16 years agocrypt32: Fix function declaration - WINAPI should come after the return type.
Rob Shearman [Thu, 14 Feb 2008 15:35:33 +0000 (15:35 +0000)] 
crypt32: Fix function declaration - WINAPI should come after the return type.

16 years agoshell32: Memory allocated by CommandLineToArgvW should be that got from LocalAlloc...
Rob Shearman [Thu, 14 Feb 2008 14:38:58 +0000 (14:38 +0000)] 
shell32: Memory allocated by CommandLineToArgvW should be that got from LocalAlloc/LocalReAlloc, not from GlobalAlloc.

Use LMEM_FIXED instead of 0 in calls to LocalAlloc to emphasise that
we're getting a direct pointer, not a handle to memory.

Remove hargv as it is confusing and unnecessary.

16 years agouser32: Fix incorrect character count passed to GetWindowTextW in ICONTITLE_Paint.
Rob Shearman [Thu, 14 Feb 2008 14:39:07 +0000 (14:39 +0000)] 
user32: Fix incorrect character count passed to GetWindowTextW in ICONTITLE_Paint.

16 years agoshlwapi: IID_IInternetSecurityMgrSite is now defined so remove the local definition...
Rob Shearman [Thu, 14 Feb 2008 14:39:02 +0000 (14:39 +0000)] 
shlwapi: IID_IInternetSecurityMgrSite is now defined so remove the local definition from IUnknown_GetWindow.

16 years agoole32: Fix the character count passed to GetClipboardFormatNameW in WriteFmtUserTypeStg.
Rob Shearman [Thu, 14 Feb 2008 14:38:53 +0000 (14:38 +0000)] 
ole32: Fix the character count passed to GetClipboardFormatNameW in WriteFmtUserTypeStg.

16 years agohhctrl.ocx: Fix the character count passed to GetFullPathNameW in OpenCHM and Navigat...
Rob Shearman [Thu, 14 Feb 2008 14:38:44 +0000 (14:38 +0000)] 
hhctrl.ocx: Fix the character count passed to GetFullPathNameW in OpenCHM and NavigateToChm.

16 years agomsrle32: Fix the character count passed into LoadStringW in About.
Rob Shearman [Thu, 14 Feb 2008 14:38:49 +0000 (14:38 +0000)] 
msrle32: Fix the character count passed into LoadStringW in About.

16 years agodxdiagn: Fix the character count passed to snprintfW in DXDiag_AddFileDescContainer...
Rob Shearman [Thu, 14 Feb 2008 14:38:40 +0000 (14:38 +0000)] 
dxdiagn: Fix the character count passed to snprintfW in DXDiag_AddFileDescContainer and DXDiag_InitDXDiagDisplayContainer.

16 years agodbghelp: Fix a typo in SymLoadModuleExW that caused the wrong number of characters...
Rob Shearman [Thu, 14 Feb 2008 14:38:35 +0000 (14:38 +0000)] 
dbghelp: Fix a typo in SymLoadModuleExW that caused the wrong number of characters to be passed to lstrcpynW.

16 years agoadvapi32: The lpcbSecurityDescriptor parameter to RegGetKeySecurity isn't optional...
Rob Shearman [Thu, 14 Feb 2008 14:38:30 +0000 (14:38 +0000)] 
advapi32: The lpcbSecurityDescriptor parameter to RegGetKeySecurity isn't optional, so don't complicate the code by treating as though it is.

16 years agoinetcomm: Add IStream_CopyTo to the sub-stream implementation.
Huw Davies [Thu, 14 Feb 2008 13:53:49 +0000 (13:53 +0000)] 
inetcomm: Add IStream_CopyTo to the sub-stream implementation.

16 years agoinetcomm: Improve some TRACEs.
Huw Davies [Thu, 14 Feb 2008 12:37:43 +0000 (12:37 +0000)] 
inetcomm: Improve some TRACEs.

16 years agonetapi32/tests: Adding a user with a too long name succeeds on NT4.
Paul Vriens [Thu, 14 Feb 2008 13:35:47 +0000 (14:35 +0100)] 
netapi32/tests: Adding a user with a too long name succeeds on NT4.

16 years agoshell32: Add support for the NoDrives registry key.
Alexandre Julliard [Fri, 15 Feb 2008 09:58:14 +0000 (10:58 +0100)] 
shell32: Add support for the NoDrives registry key.

16 years agouser32: Use custom window procs instead of DefWindowProcA/W in the IsWindowUnicode...
Dmitry Timoshkov [Thu, 14 Feb 2008 08:35:03 +0000 (16:35 +0800)] 
user32: Use custom window procs instead of DefWindowProcA/W in the IsWindowUnicode test.

16 years agodinput: Don't use event times, report current tick count instead.
Vitaliy Margolen [Thu, 14 Feb 2008 07:18:51 +0000 (00:18 -0700)] 
dinput: Don't use event times, report current tick count instead.

16 years agoRevert "dinput: Skip old mouse movement events.".
Vitaliy Margolen [Thu, 14 Feb 2008 07:15:03 +0000 (00:15 -0700)] 
Revert "dinput: Skip old mouse movement events.".

This reverts commit 31876695120f2fe6b4ecf60d73c36472607e5bf2.

16 years agowininet: Code clean up.
Jacek Caban [Wed, 13 Feb 2008 12:34:05 +0000 (13:34 +0100)] 
wininet: Code clean up.

16 years agowininet: Added cache test.
Jacek Caban [Wed, 13 Feb 2008 12:33:42 +0000 (13:33 +0100)] 
wininet: Added cache test.

16 years agowininet: Added correct InternetQueryOption(INTERNET_OPTION_DATAFILE_NAME) implementation.
Jacek Caban [Wed, 13 Feb 2008 12:33:24 +0000 (13:33 +0100)] 
wininet: Added correct InternetQueryOption(INTERNET_OPTION_DATAFILE_NAME) implementation.

16 years agowininet: Added beginning support for HTTP cache files.
Jacek Caban [Wed, 13 Feb 2008 12:32:49 +0000 (13:32 +0100)] 
wininet: Added beginning support for HTTP cache files.

16 years agomsi: Add stub implementation of MsiIsProductElevatedA/W.
Rob Shearman [Wed, 13 Feb 2008 18:08:07 +0000 (18:08 +0000)] 
msi: Add stub implementation of MsiIsProductElevatedA/W.

16 years agontdll: Add an exception handler around calls to module entry points.
Rob Shearman [Wed, 13 Feb 2008 12:36:13 +0000 (12:36 +0000)] 
ntdll: Add an exception handler around calls to module entry points.

Change the return value from BOOL to NTSTATUS so that we can return the
exception code to the caller.

16 years agomscms: [GS]etColorSpace() are not supposed to be defined in icm.h.
Francois Gouget [Wed, 13 Feb 2008 20:52:09 +0000 (21:52 +0100)] 
mscms: [GS]etColorSpace() are not supposed to be defined in icm.h.

16 years agokernel32/tests: Fix the time tests when 'Automatically adjust clock for daylight...
Francois Gouget [Wed, 13 Feb 2008 20:48:05 +0000 (21:48 +0100)] 
kernel32/tests: Fix the time tests when 'Automatically adjust clock for daylight saving changes' has been unset.

16 years agokernel32: Add prototypes for [GS]etDynamicTimeZoneInformation().
Francois Gouget [Wed, 13 Feb 2008 20:41:59 +0000 (21:41 +0100)] 
kernel32: Add prototypes for [GS]etDynamicTimeZoneInformation().

16 years agoUTF-8 resource files must explicitly say so with a pragma.
Francois Gouget [Wed, 13 Feb 2008 20:40:47 +0000 (21:40 +0100)] 
UTF-8 resource files must explicitly say so with a pragma.

16 years agowordpad: File > New now opens a dialog so there should be an ellipsis at the end.
Mikołaj Zalewski [Wed, 13 Feb 2008 13:30:21 +0000 (14:30 +0100)] 
wordpad: File > New now opens a dialog so there should be an ellipsis at the end.

16 years agowordpad: Update Polish translation.
Mikołaj Zalewski [Wed, 13 Feb 2008 13:09:41 +0000 (14:09 +0100)] 
wordpad: Update Polish translation.

16 years agowrite.exe: Add Polish translation.
Mikołaj Zalewski [Wed, 13 Feb 2008 12:21:10 +0000 (13:21 +0100)] 
write.exe: Add Polish translation.

16 years agowineboot: Add Polish translation.
Mikołaj Zalewski [Wed, 13 Feb 2008 12:14:13 +0000 (13:14 +0100)] 
wineboot: Add Polish translation.