Author: tkreuzer Date: Thu Jul 22 14:49:42 2010 New Revision: 48185
URL: http://svn.reactos.org/svn/reactos?rev=48185&view=rev Log: [NTDLL] - Add amd64 stubs for LdrInitializeThunk and KiUserApcDispatcher
Added: trunk/reactos/dll/ntdll/dispatch/amd64/ (with props) trunk/reactos/dll/ntdll/dispatch/amd64/stubs.c (with props) Modified: trunk/reactos/dll/ntdll/ntdll.rbuild
Propchange: trunk/reactos/dll/ntdll/dispatch/amd64/ ------------------------------------------------------------------------------ --- bugtraq:logregex (added) +++ bugtraq:logregex Thu Jul 22 14:49:42 2010 @@ -1,0 +1,2 @@ +([Ii]ssue|[Bb]ug)s? #?(\d+)(,? ?#?(\d+))*(,? ?(and |or )?#?(\d+))? +(\d+)
Propchange: trunk/reactos/dll/ntdll/dispatch/amd64/ ------------------------------------------------------------------------------ bugtraq:message = See issue #%BUGID% for more details.
Propchange: trunk/reactos/dll/ntdll/dispatch/amd64/ ------------------------------------------------------------------------------ bugtraq:url = http://www.reactos.org/bugzilla/show_bug.cgi?id=%BUGID%
Propchange: trunk/reactos/dll/ntdll/dispatch/amd64/ ------------------------------------------------------------------------------ tsvn:logminsize = 10
Added: trunk/reactos/dll/ntdll/dispatch/amd64/stubs.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/ntdll/dispatch/amd64/st... ============================================================================== --- trunk/reactos/dll/ntdll/dispatch/amd64/stubs.c (added) +++ trunk/reactos/dll/ntdll/dispatch/amd64/stubs.c [iso-8859-1] Thu Jul 22 14:49:42 2010 @@ -1,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; +}
Propchange: trunk/reactos/dll/ntdll/dispatch/amd64/stubs.c ------------------------------------------------------------------------------ svn:eol-style = native
Modified: trunk/reactos/dll/ntdll/ntdll.rbuild URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/ntdll/ntdll.rbuild?rev=... ============================================================================== --- trunk/reactos/dll/ntdll/ntdll.rbuild [iso-8859-1] (original) +++ trunk/reactos/dll/ntdll/ntdll.rbuild [iso-8859-1] Thu Jul 22 14:49:42 2010 @@ -32,6 +32,11 @@ <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>