Module: docs
Branch: master
Commit: 19d2f08fbeb77a2dcc864fe2ec00ec6094966a83
URL: http://source.winehq.org/git/docs.git/?a=commit;h=19d2f08fbeb77a2dcc864fe2e…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Thu Aug 15 21:48:35 2013 +0200
winedev: Update 'kernel' paths.
---
en/winedev-coding.sgml | 4 ++--
en/winedev-kernel.sgml | 4 ++--
en/winedev-testing.sgml | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/en/winedev-coding.sgml b/en/winedev-coding.sgml
index a2d5daf..5cd7290 100644
--- a/en/winedev-coding.sgml
+++ b/en/winedev-coding.sgml
@@ -489,8 +489,8 @@ AC_CHECK_HEADER(foo.h, AC_DEFINE(HAVE_FOO_H))
</para>
<para>
- When adding a new language, also make sure the parameters
- defined in <filename>./dlls/kernel/nls/*.nls</filename>
+ When adding a new language, also make sure the parameters
+ defined in <filename>dlls/kernel32/nls/*.nls</filename>
fit your local habits and language.
</para>
</sect1>
diff --git a/en/winedev-kernel.sgml b/en/winedev-kernel.sgml
index cab6883..c787ff6 100644
--- a/en/winedev-kernel.sgml
+++ b/en/winedev-kernel.sgml
@@ -2178,7 +2178,7 @@ if (res != ERROR_SUCCESS) return res;
<function>WriteConsole()</function>
which is called, hence using the default console's code page. There
are some other spots affected, but you can look in
- <filename>dlls/kernel</filename> to find them all. All of this is
+ <filename>dlls/kernel32</filename> to find them all. All of this is
implemented in Wine.
</para>
<para>
@@ -2394,7 +2394,7 @@ if (res != ERROR_SUCCESS) return res;
<para>
When entering a syslevel, the code (in
- <filename>dlls/kernel/syslevel.c</filename>) will check that a
+ <filename>dlls/krnl386.exe16/syslevel.c</filename>) will check that a
higher syslevel is not already held and produce an error if so. This
is because it's not legal to enter level 2 while holding level 3 -
first, you must leave level 3.
diff --git a/en/winedev-testing.sgml b/en/winedev-testing.sgml
index 9f2d785..7581ef6 100644
--- a/en/winedev-testing.sgml
+++ b/en/winedev-testing.sgml
@@ -140,7 +140,7 @@
<para>
The tests for a specific Wine library are located in a 'tests'
subdirectory of the library directory. Each test is contained in a
- file (e.g. <filename>dlls/kernel/tests/thread.c</filename>). Each
+ file (e.g. <filename>dlls/kernel32/tests/thread.c</filename>). Each
file itself contains many checks concerning one or more related APIs.
</para>
<para>
@@ -151,7 +151,7 @@
run the tests contained in the <filename>thread.c</filename> file of the
kernel library, you would do:
<screen>
-<prompt>$ </prompt>cd dlls/kernel/tests
+<prompt>$ </prompt>cd dlls/kernel32/tests
<prompt>$ </prompt>make thread.ok
</screen>
</para>
Module: docs
Branch: master
Commit: 1ec9ffb700e6b77366138df7df78e0e298b78976
URL: http://source.winehq.org/git/docs.git/?a=commit;h=1ec9ffb700e6b77366138df7d…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Thu Aug 15 21:48:34 2013 +0200
winedev: Correct windows device name -> unix device name mappings table.
---
en/winedev-kernel.sgml | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/en/winedev-kernel.sgml b/en/winedev-kernel.sgml
index bb277bf..cab6883 100644
--- a/en/winedev-kernel.sgml
+++ b/en/winedev-kernel.sgml
@@ -1794,23 +1794,23 @@ if (res != ERROR_SUCCESS) return res;
<entry>Treated as an alias to <filename>LPT1</filename></entry>
</row>
<row>
- <entry><filename><any_path>COM1</filename></entry>
- <entry><filename>\Global??\COM1</filename></entry>
+ <entry><filename><any_path>COM<N></filename></entry>
+ <entry><filename>\Global??\COM<N></filename></entry>
<entry>
- <filename>$(WINEPREFIX)/dosdevices/com1</filename>
+ <filename>$(WINEPREFIX)/dosdevices/com<N></filename>
(if the symbol link exists) or the Nth serial
line in the system (on Linux,
- <filename>/dev/ttyS0</filename>).
+ <filename>/dev/ttyS<N-1></filename>).
</entry>
</row>
<row>
- <entry><filename><any_path>LPT1</filename></entry>
- <entry><filename>\Global??\LPT1</filename></entry>
+ <entry><filename><any_path>LPT<N></filename></entry>
+ <entry><filename>\Global??\LPT<N></filename></entry>
<entry>
- <filename>$(WINEPREFIX)/dosdevices/lpt1</filename>
+ <filename>$(WINEPREFIX)/dosdevices/lpt<N></filename>
(if the symbol link exists) or the Nth printer
in the system (on Linux,
- <filename>/dev/lp0</filename>).
+ <filename>/dev/lp<N-1></filename>).
</entry>
</row>
<row>