Fix a few typos and such.
This commit is contained in:
parent
3c1f362ca9
commit
690142dc5b
|
@ -1627,7 +1627,6 @@ LPINT lpMax /* [O] Where to store maximum value */)
|
||||||
* SCROLL_ShowScrollBar()
|
* SCROLL_ShowScrollBar()
|
||||||
*
|
*
|
||||||
* Back-end for ShowScrollBar(). Returns FALSE if no action was taken.
|
* Back-end for ShowScrollBar(). Returns FALSE if no action was taken.
|
||||||
* NOTE: fShowV/fShowH must be zero when nBar is SB_HORZ/SB_VERT.
|
|
||||||
*/
|
*/
|
||||||
BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar,
|
BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar,
|
||||||
BOOL fShowH, BOOL fShowV )
|
BOOL fShowH, BOOL fShowV )
|
||||||
|
|
|
@ -72,7 +72,7 @@ from the WINE distributed winedefault.reg. This can be done using
|
||||||
./regapi once for one example user and then reusing his .wine/user.reg
|
./regapi once for one example user and then reusing his .wine/user.reg
|
||||||
and .wine/system.reg files. [FIXME: this needs to be done better]
|
and .wine/system.reg files. [FIXME: this needs to be done better]
|
||||||
|
|
||||||
install -m 644 wine.sytemreg $BR/etc/wine/
|
install -m 644 wine.systemreg $BR/etc/wine/
|
||||||
install -m 644 wine.userreg $BR/etc/wine/
|
install -m 644 wine.userreg $BR/etc/wine/
|
||||||
|
|
||||||
There are now a lot of libraries generated by the build process, so a
|
There are now a lot of libraries generated by the build process, so a
|
||||||
|
|
|
@ -8,7 +8,7 @@ The X11 driver
|
||||||
currently available is Patrik Stridvall's ncurses-based ttydrv, which
|
currently available is Patrik Stridvall's ncurses-based ttydrv, which
|
||||||
he claims works for displaying calc.exe). The display driver is chosen
|
he claims works for displaying calc.exe). The display driver is chosen
|
||||||
with the "GraphicsDriver" option in the [wine] section of
|
with the "GraphicsDriver" option in the [wine] section of
|
||||||
wine.conf/.winerc, but I will only cover the x11drv in this article.
|
wine.conf/.winerc, but I will only cover the x11drv in this document.
|
||||||
|
|
||||||
x11drv modes of operation
|
x11drv modes of operation
|
||||||
|
|
||||||
|
|
|
@ -219,7 +219,7 @@ sub IsMounted {
|
||||||
}
|
}
|
||||||
|
|
||||||
sub RegisterDrive {
|
sub RegisterDrive {
|
||||||
my($DOSdrive, $Drive, $Type) = @_;
|
my($DOSdrive, $Drive) = @_;
|
||||||
$::DOS2Unix{$DOSdrive} = $Drive;
|
$::DOS2Unix{$DOSdrive} = $Drive;
|
||||||
$::Device2DOS{$Drive->[0]} = $DOSdrive;
|
$::Device2DOS{$Drive->[0]} = $DOSdrive;
|
||||||
$::MntPoint2DOS{$Drive->[1]} = $DOSdrive;
|
$::MntPoint2DOS{$Drive->[1]} = $DOSdrive;
|
||||||
|
|
Loading…
Reference in New Issue