mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[KSECDD]
- Really export symbols - Properly stub InitSecurityInterfaceW - Install the driver svn path=/trunk/; revision=63619
This commit is contained in:
parent
7fade28911
commit
988dbfce59
3 changed files with 12 additions and 2 deletions
|
@ -60,6 +60,7 @@ pcmcia.sys=,,,,,,,,,,,,4
|
|||
swenum.sys=,,,,,,,,,,,,4
|
||||
ntdll.dll=,,,,,,,,,,,,2
|
||||
wmilib.sys=,,,,,,,,,,,,4
|
||||
ksecdd.sys=,,,,,,,,,,,,4
|
||||
|
||||
[HardwareIdsDatabase]
|
||||
;*PNP0A00 = isapnp
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
spec2def(ksecdd.sys ksecdd.spec)
|
||||
|
||||
|
||||
include_directories(
|
||||
${REACTOS_SOURCE_DIR}/include/reactos/drivers/ksecdd
|
||||
${REACTOS_SOURCE_DIR}/lib/cryptlib)
|
||||
|
@ -11,7 +10,8 @@ list(APPEND SOURCE
|
|||
dispatch.c
|
||||
random.c
|
||||
stubs.c
|
||||
ksecdd.rc)
|
||||
ksecdd.rc
|
||||
${CMAKE_CURRENT_BINARY_DIR}/ksecdd.def)
|
||||
|
||||
add_library(ksecdd SHARED ${SOURCE})
|
||||
target_link_libraries(ksecdd cryptlib pseh)
|
||||
|
|
|
@ -208,6 +208,15 @@ InitializeSecurityContextW(
|
|||
return 0;
|
||||
}
|
||||
|
||||
PSecurityFunctionTableW
|
||||
SEC_ENTRY
|
||||
InitSecurityInterfaceW(void)
|
||||
{
|
||||
|
||||
UNIMPLEMENTED_DBGBREAK();
|
||||
return NULL;
|
||||
}
|
||||
|
||||
VOID
|
||||
SEC_ENTRY
|
||||
KSecRegisterSecurityProvider(VOID)
|
||||
|
|
Loading…
Reference in a new issue