[NTDLL]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 22 Jul 2010 14:49:42 +0000 (14:49 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 22 Jul 2010 14:49:42 +0000 (14:49 +0000)
- Add amd64 stubs for LdrInitializeThunk and KiUserApcDispatcher

svn path=/trunk/; revision=48185

reactos/dll/ntdll/dispatch/amd64/stubs.c [new file with mode: 0644]
reactos/dll/ntdll/ntdll.rbuild

diff --git a/reactos/dll/ntdll/dispatch/amd64/stubs.c b/reactos/dll/ntdll/dispatch/amd64/stubs.c
new file mode 100644 (file)
index 0000000..fe7b4a7
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ * COPYRIGHT:       See COPYING in the top level directory
+ * PROJECT:         ReactOS NT Library
+ * FILE:            dll/ntdll/dispatch/amd64/stubs.c
+ * PURPOSE:         AMD64 stubs
+ * PROGRAMMERS:      Stefan Ginsberg (stefan.ginsberg@reactos.org)
+ */
+
+/* INCLUDES *****************************************************************/
+
+#include <ntdll.h>
+#define NDEBUG
+#include <debug.h>
+
+/* PUBLIC FUNCTIONS **********************************************************/
+
+/*
+ * @unimplemented
+ */
+VOID
+NTAPI
+LdrInitializeThunk(ULONG Unknown1, // FIXME: Parameters!
+                   ULONG Unknown2,
+                   ULONG Unknown3,
+                   ULONG Unknown4)
+{
+    UNIMPLEMENTED;
+    return;
+}
+
+/*
+ * @unimplemented
+ */
+VOID
+NTAPI
+KiUserApcDispatcher(IN PVOID NormalRoutine,
+                    IN PVOID NormalContext,
+                    IN PVOID SystemArgument1,
+                    IN PVOID SystemArgument2)
+{
+    UNIMPLEMENTED;
+    return;
+}
index b8db8d0..0a09528 100644 (file)
                                        <file>dispatch.S</file>
                                </directory>
                        </if>
+                       <if property="ARCH" value="amd64">
+                               <directory name="amd64">
+                                       <file>stubs.c</file>
+                               </directory>
+                       </if>
                        <if property="ARCH" value="arm">
                                <directory name="arm">
                                        <file>stubs_asm.s</file>