https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4126817f7ffc06dc2fb15…
commit 4126817f7ffc06dc2fb1521f8b8ed7dc57a59607
Author: Serge Gautherie <32623169+SergeGautherie(a)users.noreply.github.com>
AuthorDate: Fri Apr 19 15:12:16 2019 +0200
Commit: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
CommitDate: Fri Apr 19 22:12:16 2019 +0900
[BOOTDATA] AHKAppTests.cmd: Fix 'media' typo (#1502)
Addendum to df2a8c4. s/media/medium/
---
boot/bootdata/bootcdregtest/AHKAppTests.cmd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/boot/bootdata/bootcdregtest/AHKAppTests.cmd b/boot/bootdata/bootcdregtest/AHKAppTests.cmd
index 2c969a6745..6c93dfe21d 100644
--- a/boot/bootdata/bootcdregtest/AHKAppTests.cmd
+++ b/boot/bootdata/bootcdregtest/AHKAppTests.cmd
@@ -5,7 +5,7 @@ for %%X in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (if exist %%
if not defined DRIVE (
dbgprint "AHK Application testing suite not present, skipping."
- dbgprint "Insert ReactOS boot media and try again."
+ dbgprint "Insert ReactOS boot medium and try again."
exit /b 0
)
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=0efcfec0440a8a373753c…
commit 0efcfec0440a8a373753c1e94507d6c6bec19bbb
Author: Mark Jansen <mark.jansen(a)reactos.org>
AuthorDate: Thu Apr 18 21:17:00 2019 +0200
Commit: Mark Jansen <mark.jansen(a)reactos.org>
CommitDate: Thu Apr 18 21:17:00 2019 +0200
[NTOBJSHEX] Reorder include files in the precompiled header
---
dll/shellext/ntobjshex/ntobjenum.h | 6 +-----
dll/shellext/ntobjshex/precomp.h | 6 ++++++
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/dll/shellext/ntobjshex/ntobjenum.h b/dll/shellext/ntobjshex/ntobjenum.h
index 51937df1b5..253c483c12 100644
--- a/dll/shellext/ntobjshex/ntobjenum.h
+++ b/dll/shellext/ntobjshex/ntobjenum.h
@@ -15,12 +15,8 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#pragma once
-extern "C" {
-#define NTOS_MODE_USER
-#include <ndk/ntndk.h>
-#include <ndk/rtlfuncs.h>
-}
// All the possible values are defined here because I want the type field to be
// "persistable" and not change if more types are added in the future.
diff --git a/dll/shellext/ntobjshex/precomp.h b/dll/shellext/ntobjshex/precomp.h
index 55a055723e..d221a8c671 100644
--- a/dll/shellext/ntobjshex/precomp.h
+++ b/dll/shellext/ntobjshex/precomp.h
@@ -10,6 +10,12 @@
#define COM_NO_WINDOWS_H
#define NTOS_MODE_USER
+extern "C"
+{
+#include <ndk/ntndk.h>
+#include <ndk/rtlfuncs.h>
+}
+
#include <windef.h>
#include <winbase.h>
#include <winreg.h>