mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 23:48:12 +00:00
- Implement DllInitialize
svn path=/trunk/; revision=42804
This commit is contained in:
parent
e64b6077f6
commit
bfe81917e0
2 changed files with 16 additions and 0 deletions
|
@ -149,6 +149,21 @@ GetFilterInstanceEntry(
|
||||||
return InstanceEntry;
|
return InstanceEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
@implemented
|
||||||
|
*/
|
||||||
|
NTSTATUS
|
||||||
|
NTAPI
|
||||||
|
DllInitialize(
|
||||||
|
PUNICODE_STRING RegistryPath)
|
||||||
|
{
|
||||||
|
KeInitializeSpinLock(&g_Settings.FilterFactoryInstanceListLock);
|
||||||
|
InitializeListHead(&g_Settings.FilterFactoryInstanceList);
|
||||||
|
g_Settings.Initialized = TRUE;
|
||||||
|
|
||||||
|
return STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@implemented
|
@implemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
@ stdcall DllInitialize(ptr)
|
||||||
@ stdcall BdaCheckChanges(ptr)
|
@ stdcall BdaCheckChanges(ptr)
|
||||||
@ stdcall BdaCommitChanges(ptr)
|
@ stdcall BdaCommitChanges(ptr)
|
||||||
@ stdcall BdaCreateFilterFactory(ptr ptr ptr)
|
@ stdcall BdaCreateFilterFactory(ptr ptr ptr)
|
||||||
|
|
Loading…
Reference in a new issue