source: trunk/changelog@ 8803

Last change on this file since 8803 was 8798, checked in by sandervl, 23 years ago

* empty log message *

File size: 22.8 KB
Line 
1/* $Id: changelog,v 1.2196 2002-06-28 19:43:32 sandervl Exp $ */
2
3 2002-06-28: Sander van Leeuwen <sandervl@innotek.de>
4 - USER32: o Removed focus fix from 2001-11-20; controls of child
5 dialogs can receive input focus (CVP wizard dialogs)
6 o Only call ProcessKbdHook from PeekMessage if PM_REMOVE
7 flag is set (otherwise the hook will be called twice)
8 o Call message filter hook in IsDialogMessageA/W
9 - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)
10
11 2002-06-27: Platon Fomichev <platon@innotek.de>
12 - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently
13 done in windows)
14
15 2002-06-27: Sander van Leeuwen <sandervl@innotek.de>
16 - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA
17 is valid. (COMDLG32_UpdateCurrentDir)
18 (fixes crash in file dialog when double clicking on abstract
19 objects like 'My Computer')
20
21 2002-06-26: Sander van Leeuwen <sandervl@innotek.de>
22 - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &
23 DosDateTimeToFileTime functions;
24 Real problem lies in the fact that the times returned
25 by DosFindFirst, DosFindNext, DosQueryPathInfo &
26 DosQueryFileInfo are in local time; we must convert them
27 to file time (UTC)
28 o Fixed bug in OSLibGetDriveType; broke GetDriveType for
29 floppy drives
30 o Fixed CreateFile for disks
31 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
32 fail if no disk present or when the media has been changed
33 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
34 always succeed
35 o Don't fail CreateFile for disk when DosOpen fails with
36 a sharing violation. Apparently this is allowed in windows;
37 although you can't do much with the handle. (limited to
38 IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)
39
40 2002-06-26: knut st. osmundsen <bird@anduin.net>
41 - KERNEL32\testcase:
42 o Added testcase for Test of SetConsoleCtrlHandler() and
43 GenerateConsoleCtrlEvent().
44 Note. The last part of it is known to fail since the
45 functions aren't 100% implemented yet.
46 o Added mini testcase for MultiByteToWideChar().
47 o Use the testsuite tools for unit testcases too.
48 - KERNEL32: o Partial implementation of Console Ctrl Handlers.
49 (Ctrl-Break and Ctrl-C)
50 o GetFileType on std files doesn't always return TYPE_CHAR.
51 Ask what kind of filehandle we have.
52 (Solves 'press key' problem with "wcc386.exe > file".)
53 o Enable writing to STDERR. (This might have brought into
54 light a redirection problem.)
55
56 2002-06-25: Sander van Leeuwen <sandervl@innotek.de>
57 - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string
58 key data; registry.dll returns the wrong value (too big;
59 appears size of internal storage)
60 o FileTimeToSystemTime fix (no problems with WGSS implementation)
61 o Removed bad unicode change
62
63 2002-06-25: knut st. osmundsen <bird@anduin.net>
64 - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length
65 is bad.
66 - SHELL32: o Bad linked list walking. (accessed node after free)
67 - USER32: o Allocate space the two missing RGB2 entries.
68 o Use "%.*s" and "%.*ls" when we have a string with a length.
69 (Crashing in logging is awfull. Creates zombies!)
70 - ODINCRT: o Reserve low 32MB of address space before initializing
71 the CRT IF we compile with the debug heap (kLib).
72
73 2002-06-24: knut st. osmundsen <bird@anduin.net>
74 - Testsuite:
75 o Most of the watcom case done and working.
76 - Make: o Corrected LIB paths of the win32 watcom setup.
77
78 2002-06-21: knut st. osmundsen <bird@anduin.net>
79 - KERNEL32: o LCMapStringW fix
80
81 2002-06-20: Platon Fomichev <platon@innotek.de>
82 - COMCTL32: o Don't erase background for ownerdrawn listview controls
83 (LISTVIEW_RefreshReport)
84
85 2002-06-20: Sander van Leeuwen <sandervl@innotek.de>
86 - OLE32: o Drag 'n drop fix
87 - USER32: o Drag 'n drop fix
88 o Enabled drag 'n drop again
89 o Added DisableDragDrop
90
91 2002-06-20: knut st. osmundsen <bird@anduin.net>
92 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
93 - Tools: o Added ExecTestcase.cmd for executing a testing and do
94 result logging.
95 - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.
96 - Testsuite:
97 o Use ExecTestcase.cmd for executing the testcases.
98 Logging & execute all testcases nomatter return values.
99 o Added watcomc.mak which is pretty simple watcom tests.
100 (currently noone of them really work 100%.)
101 o TODO: Make a timeout executer which kills the children when
102 they've been executing too long. This is required in order to
103 run the testsuite without human interaction.
104
105 2002-06-19: Sander van Leeuwen <sandervl@innotek.de>
106 - OLE32: o Drag 'n drop fixes
107
108 2002-06-18: Sander van Leeuwen <sandervl@innotek.de>
109 - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput
110 mouse state is out of sync and update if necessary
111
112 2002-06-18: knut st. osmundsen <bird@anduin.net>
113 - Win32k: o Fixed compiler warning which caused the M$ compiler
114 to choke on some systems.
115 - Testsuite:
116 o A collection of testcases running real win32 apps.
117 Not finished, just an idea currently, intended for
118 testing odin releases and changes.
119 Currently limiting ourselfs to CUI progs.
120 o A simple DoxyGen testcase is checked in.
121 o Read the micro howto in testsuite/Makefile.
122 - Make: o Synced with outside world. (NMAKE5 changes mostly.)
123 o Added support for TARGET_MODE = TESTCASE.
124 o Added separate tools file for the testsuite.
125
126 2002-06-17: Sander van Leeuwen <sandervl@innotek.de>
127 - USER32: o Disabled drag 'n drop temporarily (not yet stable)
128
129 2002-06-16: Sander van Leeuwen <sandervl@innotek.de>
130 - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ
131 o Removed: LoadLibraryExA: expand library filename
132 (doesn't happen in Windows)
133 - INSTALL: o Create object for Odin User's Manual + fixed object
134 creation for OdinBug Manual
135 o Include OdinBug.HLP & OdinUser.INF
136 - SHELL32: o Fixed desktop object creation during win32 app install
137
138 2002-06-15: Sander van Leeuwen <sandervl@innotek.de>
139 - SETUPAPI: o Wine resync + added debug wrappers
140 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
141 o Check for NULL parameters in GetFullPathNameW
142 o hmfile.cpp: ParsePath fix; check boundary
143 o LoadLibraryExA: expand library filename; might contain
144 environment variables
145 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
146 registry.dll doesn't like this type for some reason
147 - USER32: o Do proper filtering for PeekMessage
148 - NTDLL: o Forward heap functions to kernel32
149 - QUARTZ: o Removed old code (stub dll now)
150 - AVIFIL32: o Resync with Wine
151 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
152
153 2002-06-13: Sander van Leeuwen <sandervl@innotek.de>
154 - USER32: o SetCustomWndHandleSemName added to override shared semaphore
155 name used to synchronize global window handle array access
156 (to avoid name clash with Odin)
157 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
158 name used to synchronize global memory map list access
159 (to avoid name clash with Odin)
160
161 2002-06-13: Platon Fomichev <platon@innotek.de>
162 - USER32: o Only minimize or maximize window if appropriate style flag set
163
164 2002-06-12: Sander van Leeuwen <sandervl@innotek.de>
165 - KERNEL32: o If bytes present in COM device buffer, read them directly;
166 even for overlapped IO calls.
167
168 2002-06-11: Platon Fomichev <platon@innotek.de>
169 - SHELL32: o Ignore name changes for 'My Computer' and other non-file
170 objects (file dialogs)
171
172 2002-06-11: Sander van Leeuwen <sandervl@innotek.de>
173 - OLEAUT32, SHELL32:
174 o Some Wine updates
175 - KERNEL32: o Overlapped IO bugfixes
176 o Thread TEB linking bugfix
177 o Setup TEB structure before creating thread. Otherwise it's
178 created too late and thread functions called by the app
179 right after thread creation will fail.(e.g. SetThreadPriority)
180
181 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
182 - TOOLS\ODINBUG:
183 o Added VX-REXX sources for OdinBug
184 - DOC: o OdinBug.HLP update
185 - BIN: o OdinBug.exe update
186
187 2002-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
188 - OLE32: o Fixed bug in StgStreamImpl_Seek
189 - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible
190 (fixes crash in Java 1.4 install)
191 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
192 overlapped IO
193
194 2002-06-09: knut st. osmundsen <bird@anduin.net>
195 - Makefiles:
196 o Exclude dummy.c from the dependencies.
197
198 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
199 - KERNEL32: o Corrections for Austrian NLS file
200
201 2002-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
202 - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message
203 communication
204 (fixes OpenOffice 1.0 crash during install (at 76%))
205 o Skip window handle 0x68000000 (otherwise more difficult
206 to compare logs with old builds)
207 o Logging changes for comparing source file names
208 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
209 (fixes Java 1.4 installation (first dialog))
210 - COMDLG32: o GetFileDialog95W fix (check if template name is string or
211 numeric id)
212 (fixes OpenOffice 1.0 file open dialog crash)
213 - WININET: o Fixed shlwapi imports
214 - OLE32: o Resync with latest Wine
215 - OLEAUT32: o Resync with latest Wine
216
217 2002-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
218 - SHELL32: o Moved resource files to subdir
219 - COMDLG32: o Compile fix + moved resource files to subdir
220 - KERNEL32: o Export OSLibDosDevIOCtl
221 - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
222 (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
223 package from May 2001 (or newer) or recent JJSCDROM)
224 - DDRAW: o Fixed clipping bug with non-frame windows
225 o Print FOURCCs supported by Dive
226
227 2002-06-08: knut *st. osmundsen <bird@anduin.net>
228 - TOOLS\WRC:o Compile fix
229
230 2002-06-07: Sander van Leeuwen <sandervl@innotek.de>
231 - SHLWAPI: o Resync with latest Wine & added LGPL license
232 - SHELL32: o Some updates for upcoming resync
233
234 2002-06-06: knut st. osmundsen <bird@anduin.net>
235 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
236
237 2002-06-06: Mark Paulus <mark.paulus@wcom.com>
238 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
239 opening an existing file
240
241 2002-06-06: Sander van Leeuwen <sandervl@innotek.de>
242 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
243
244 2002-06-06: Platon Fomichev <platon@innotek.de>
245 - SHELL32: o Always expand root when initializing treeview
246 o Do not sort tree in TVN_ITEMEXPANDINGA
247
248 2002-06-05: Sander van Leeuwen <sandervl@innotek.de>
249 - WINMM: o Put back original DART buffer size selection code
250 (new one messes up e.g. RealPlayer)
251 o Postpone recording when waveInStart called without
252 any buffers in the queue. Start in during next
253 waveInAddBuffer call.
254 o Fixed DART waveout resume
255
256 2002-06-04: Sander van Leeuwen <sandervl@innotek.de>
257 - USER32: o Fix for AltGr key combinations
258 - WINMM: o Updates for wave playback
259
260 2002-06-03: Sander van Leeuwen <sandervl@innotek.de>
261 - USER32, OLE32:
262 o Drag and drop fixes
263 - BIN\ODINBUG:
264 o Update by Herwig Bauernfeind (0.5.6a)
265 - DOC\MANUAL:
266 o Users manual sources by Herwig Bauernfeind
267 - DOC: o Added odinuser.inf by Herwig Bauernfeind
268
269 2002-06-02: Sander van Leeuwen <sandervl@innotek.de>
270 - USER32\CONTROLS:
271 o New dll for user32 controls (latest Wine)
272 (not activated, not finished (resync))
273 - USER32: o Moved drag & drop code to seperate file
274 o Updates for OLE drag 'n drop
275 - KERNEL32: o LogException: check lockcount before changing it on entry
276 (it is not always > 0 -> previously caused hang in exception
277 handler (zombie process))
278 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
279 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
280 (todo: Odin app -> WPS)
281
282 2002-06-01: Sander van Leeuwen <sandervl@innotek.de>
283 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
284 performance
285 o DragQueryFileW fix
286 - WINMM: o Implemented minimal control change notification
287 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
288 control (probably not 100% correct)
289 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
290 (works in notepad; drag file object from WPS into notepad
291 window)
292
293 2002-05-31: Sander van Leeuwen <sandervl@innotek.de>
294 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
295 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
296 (with LLMHF_INJECTED flag set)
297
298 2002-05-31: Platon Fomichev <platon@innotek.de>
299 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
300
301 2002-05-30: Sander van Leeuwen <sandervl@innotek.de>
302 - WINMM: o Mixer fixes
303
304 2002-05-30: Platon Fomichev <platon@innotek.de>
305 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
306 (seems to be done in windows)
307
308 2002-05-29: Sander van Leeuwen <sandervl@innotek.de>
309 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
310 (fixes AbiWord keyboard input)
311 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
312 o mixerGetLineInfoW fix
313 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
314 wrt cx parameter (when set to zero)
315 (fixes properties dialog of sndvol32.exe (windows mixer app))
316 o Updated status control to latest Wine & applied two
317 bugfixes (already sent to wine-patches)
318
319 2002-05-29: Platon Fomichev <platon@innotek.de>
320 - USER32: o GetAsyncKeyState fix for VK_MENU
321 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
322 (invalidate control to prevent leftovers of size grip)
323
324 2002-05-28: Sander van Leeuwen <sandervl@innotek.de>
325 - REGSVR32: o Fixed startup
326 - WINMM: o Completely implemented mixerSetControlDetails
327 o Mixer updates
328 o Support added for master volume (ioctl90 mode)
329 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
330 o Wave recording now works
331
332 2002-05-28: Platon Fomichev <platon@innotek.de>
333 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
334 - KERNEL32: o Debugger updates
335
336 2002-05-27: Sander van Leeuwen <sandervl@innotek.de>
337 - WINMM: o Completely implemented mixerGetControlDetailsA/W
338 o Mixer updates
339 - TESTAPP\MIXER:
340 o Test application for mixer functions
341
342 2002-05-25: Sander van Leeuwen <sandervl@innotek.de>
343 - WINMM: o Fix for soundcards without ioctl90 mixer support
344 o Many mixer updates
345
346 2002-05-24: Sander van Leeuwen <sandervl@innotek.de>
347 - WINMM: o More mixer updates (not yet finished)
348
349 2002-05-23: Yuri Dario <mc6530@mclink.it>
350 - USER32: o Don't beep when unable to find menu item when alt key pressed
351
352 2002-05-23: Sander van Leeuwen <sandervl@innotek.de>
353 - WINMM: o Mixer updates (not yet finished)
354
355 2002-05-23: Platon Fomichev <platon@innotek.de>
356 - USER32: o Keyboard fixes for right alt & right shift
357
358 2002-05-22: Sander van Leeuwen <sandervl@innotek.de>
359 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
360 (fixes RealPlayer (PostThreadMessage))
361 - WINMM: o Added debug wrappers
362 o Started with mixer api rewrite
363
364 2002-05-21: Sander van Leeuwen <sandervl@innotek.de>
365 - KERNEL32: o Round stack top & bottom (TIB) to page boundary
366
367 2002-05-20: Sander van Leeuwen <sandervl@innotek.de>
368 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
369 since a dll that depends on dlls with an exitlist handler
370 doesn't get properly unloaded (initterm not called for unload
371 nor for a 2nd load)
372
373 2002-05-20: Dmitry Froloff <froloff@os2.ru>
374 - KERNEL32: o Removed 64 MB memory mapped file limit
375 o Fix for opening memory mapped file with size larger than
376 the file size
377
378 2002-05-17: Platon Fomichev <platon@innotek.de>
379 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
380 if window is not visible (fixes endless loop in
381 property sheet when switching page with keyboard)
382
383 2002-05-17: Sander van Leeuwen <sandervl@innotek.de>
384 - OLEAUT32: o Resync with latest Wine
385 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
386 (IOCTL_CDROM_CURRENT_POSITION only)
387 o IOCTL_CDROM_READ_TOC fix
388
389 2002-05-16: knut st. osmundsen <bird@anduin.net>
390 - MAKE: o Merged in latest changes.
391 o Create NewConfigure.cmd for this environment.
392 Try NewConfigure.cmd -? first.
393 (Do 'nmake needed' before calling this. (stupid!))
394 o Please note that this is still not 100% configured for
395 Odin32 yet. But eventually it will replace the existing
396 make system.
397
398 2002-05-16: Sander van Leeuwen <sandervl@innotek.de>
399 - NTDLL: o Partial resync with Wine
400 - KERNEL32: o Export some functions for NTDLL
401 o Fixed creation of logfile for executables on readonly volumes
402 o RegQueryInfoKeyW fix
403 o TLS fix for pe2lx images
404 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
405 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
406 SystemParametersInfoA parameters
407 - OLE32: o Resync with latest Wine
408
409 2002-05-15: Sander van Leeuwen <sandervl@innotek.de>
410 - DINPUT: o Made mouse code reentrant
411 - GDI32: o Fix for EnumFontFamiliesA/W
412 - SETUPAPI: o Resync with latest Wine
413
414 2002-05-14: Sander van Leeuwen <sandervl@innotek.de>
415 - KERNEL32: o CustForce2GBFileSize function added to force
416 GetVolumeInformation to tell the app all partitions are FAT
417 (2 GB file size limitation)
418 - COMCTL32: o Merged property sheet control with latest Wine version
419
420 2002-05-14: Platon Fomichev <platon@innotek.de>
421 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
422 SWP_FOCUS(DE)ACTIVATE message.
423
424 2002-05-10: Platon Fomichev <platon@innotek.de>
425 - KERNEL32: o Parallel port updates (use resource manager to query
426 hardware configuration)
427
428 2002-05-10: Sander van Leeuwen <sandervl@innotek.de>
429 - KERNEL32: o Applications are now allowed to read physical disks or
430 mounted partitions. Write access is only allowed for
431 unmounted partitions or floppy disks.
432 o Implemented GetFileSize for disk objects; corrected
433 return value for some failures (-1)
434
435 2002-05-09: Sander van Leeuwen <sandervl@innotek.de>
436 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
437 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
438 o Implemented GetVolumeNameForVolumeMountPointA/W for disk
439 mountpoints (e.g. C:\)
440 o Rewrote FindFirst/NextVolume to use LVM interface (if
441 availabe; else fail)
442 o Extended GetDriveType & GetVolumeInformation for volume
443 names (instead of only disk names (e.g. C:\))
444 o GetVolumeInformation change: keep file system name if
445 NTFS or FAT32
446 o Implemented unmounted volume and physical disk access
447
448 2002-05-08: Sander van Leeuwen <sandervl@innotek.de>
449 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
450 toolbar, tab, pager, nativefont, imagelist code
451 o Updated license (LGPL) for comctl32
452 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
453 in NTDLL)
454 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
455 - KERNEL32: o Implemented volume & volume mountpoint functions
456 (win2k and up)
457 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
458 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
459
460 2002-05-08: Platon Fomichev <platon@innotek.de>
461 - COMCTL32: o Merged listview control with latest Wine
462
463 2002-05-07: Sander van Leeuwen <sandervl@innotek.de>
464 - USER32: o WH_MOUSE_LL hook fixes
465
466 2002-05-07: Platon Fomichev <platon@innotek.de>
467 - USER32: o Listbox/combobox fix for MFC apps
468 o SetParent doesn't change WS_CHILD style
469 o Experimental change for getParent
470
471 2002-05-07: knut st. osmundsen <bird@anduin.net>
472 - CmdQd: o The daemon shouldn't inherit standard handles when started.
473 (Hung the daily build, since we use tee to do logging.)
474
475 2002-05-06: Sander van Leeuwen <sandervl@innotek.de>
476 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
477
478 2002-05-01: Sander van Leeuwen <sandervl@innotek.de>
479 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
480 translation array
481
Note: See TracBrowser for help on using the repository browser.