ntoskrnl.exe: Initial stub version with forwards to existing functions.

This commit is contained in:
Alexandre Julliard 2007-05-14 19:55:32 +02:00
parent 260591fef6
commit 12c169d2bf
7 changed files with 1506 additions and 0 deletions

1
.gitignore vendored
View File

@ -378,6 +378,7 @@ dlls/ntdll/tests/ntdll_crosstest.exe
dlls/ntdll/tests/testlist.c
dlls/ntdll/version.res
dlls/ntdsapi/libntdsapi.def
dlls/ntoskrnl.exe/libntoskrnl.exe.def
dlls/objsel/objsel.res
dlls/odbc32/libodbc32.def
dlls/odbccp32/libodbccp32.def

View File

@ -309,6 +309,7 @@ ALL_MAKEFILES = \
dlls/ntdll/Makefile \
dlls/ntdll/tests/Makefile \
dlls/ntdsapi/Makefile \
dlls/ntoskrnl.exe/Makefile \
dlls/objsel/Makefile \
dlls/odbc32/Makefile \
dlls/odbccp32/Makefile \
@ -655,6 +656,7 @@ dlls/newdev/Makefile: dlls/newdev/Makefile.in dlls/Makedll.rules
dlls/ntdll/Makefile: dlls/ntdll/Makefile.in dlls/Makedll.rules
dlls/ntdll/tests/Makefile: dlls/ntdll/tests/Makefile.in dlls/Maketest.rules
dlls/ntdsapi/Makefile: dlls/ntdsapi/Makefile.in dlls/Makedll.rules
dlls/ntoskrnl.exe/Makefile: dlls/ntoskrnl.exe/Makefile.in dlls/Makedll.rules
dlls/objsel/Makefile: dlls/objsel/Makefile.in dlls/Makedll.rules
dlls/odbc32/Makefile: dlls/odbc32/Makefile.in dlls/Makedll.rules
dlls/odbccp32/Makefile: dlls/odbccp32/Makefile.in dlls/Makedll.rules

3
configure vendored
View File

@ -20687,6 +20687,8 @@ ac_config_files="$ac_config_files dlls/ntdll/tests/Makefile"
ac_config_files="$ac_config_files dlls/ntdsapi/Makefile"
ac_config_files="$ac_config_files dlls/ntoskrnl.exe/Makefile"
ac_config_files="$ac_config_files dlls/objsel/Makefile"
ac_config_files="$ac_config_files dlls/odbc32/Makefile"
@ -21764,6 +21766,7 @@ do
"dlls/ntdll/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ntdll/Makefile" ;;
"dlls/ntdll/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ntdll/tests/Makefile" ;;
"dlls/ntdsapi/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ntdsapi/Makefile" ;;
"dlls/ntoskrnl.exe/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ntoskrnl.exe/Makefile" ;;
"dlls/objsel/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/objsel/Makefile" ;;
"dlls/odbc32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/odbc32/Makefile" ;;
"dlls/odbccp32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/odbccp32/Makefile" ;;

View File

@ -1639,6 +1639,7 @@ AC_CONFIG_FILES([dlls/newdev/Makefile])
AC_CONFIG_FILES([dlls/ntdll/Makefile])
AC_CONFIG_FILES([dlls/ntdll/tests/Makefile])
AC_CONFIG_FILES([dlls/ntdsapi/Makefile])
AC_CONFIG_FILES([dlls/ntoskrnl.exe/Makefile])
AC_CONFIG_FILES([dlls/objsel/Makefile])
AC_CONFIG_FILES([dlls/odbc32/Makefile])
AC_CONFIG_FILES([dlls/odbccp32/Makefile])

View File

@ -128,6 +128,7 @@ BASEDIRS = \
newdev \
ntdll \
ntdsapi \
ntoskrnl.exe \
objsel \
odbc32 \
odbccp32 \
@ -526,6 +527,7 @@ IMPORT_LIBS = \
newdev/libnewdev.$(IMPLIBEXT) \
ntdll/libntdll.$(IMPLIBEXT) \
ntdsapi/libntdsapi.$(IMPLIBEXT) \
ntoskrnl.exe/libntoskrnl.exe.$(IMPLIBEXT) \
odbc32/libodbc32.$(IMPLIBEXT) \
odbccp32/libodbccp32.$(IMPLIBEXT) \
ole32/libole32.$(IMPLIBEXT) \
@ -786,6 +788,9 @@ ntdll/libntdll.$(IMPLIBEXT): ntdll/ntdll.spec $(WINEBUILD)
ntdsapi/libntdsapi.$(IMPLIBEXT): ntdsapi/ntdsapi.spec $(WINEBUILD)
@cd ntdsapi && $(MAKE) libntdsapi.$(IMPLIBEXT)
ntoskrnl.exe/libntoskrnl.exe.$(IMPLIBEXT): ntoskrnl.exe/ntoskrnl.exe.spec $(WINEBUILD)
@cd ntoskrnl.exe && $(MAKE) libntoskrnl.exe.$(IMPLIBEXT)
odbc32/libodbc32.$(IMPLIBEXT): odbc32/odbc32.spec $(WINEBUILD)
@cd odbc32 && $(MAKE) libodbc32.$(IMPLIBEXT)

View File

@ -0,0 +1,11 @@
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = ntoskrnl.exe
IMPORTLIB = libntoskrnl.exe.$(IMPLIBEXT)
IMPORTS = kernel32 ntdll
@MAKE_DLL_RULES@
@DEPENDENCIES@ # everything below this line is overwritten by make depend

File diff suppressed because it is too large Load Diff