Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
12c169d2
Commit
12c169d2
authored
May 14, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Initial stub version with forwards to existing functions.
parent
260591fe
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
0 deletions
+23
-0
.gitignore
.gitignore
+1
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+5
-0
Makefile.in
dlls/ntoskrnl.exe/Makefile.in
+11
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+0
-0
No files found.
.gitignore
View file @
12c169d2
...
...
@@ -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
...
...
Makefile.in
View file @
12c169d2
...
...
@@ -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
...
...
configure
View file @
12c169d2
...
...
@@ -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" ;;
...
...
configure.ac
View file @
12c169d2
...
...
@@ -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])
...
...
dlls/Makefile.in
View file @
12c169d2
...
...
@@ -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)
...
...
dlls/ntoskrnl.exe/Makefile.in
0 → 100644
View file @
12c169d2
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
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
0 → 100644
View file @
12c169d2
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment