X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=ntoskrnl%2Frtl%2Fatom.c;fp=ntoskrnl%2Frtl%2Fatom.c;h=c184900161718449380dcf211e174353924d70c7;hp=e822da121305427de853ec58a9496eb46c6a0ec2;hb=a3df8bf1429570e0bd6c6428f6ed80073578cf4b;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/ntoskrnl/rtl/atom.c b/ntoskrnl/rtl/atom.c index e822da1..c184900 100644 --- a/ntoskrnl/rtl/atom.c +++ b/ntoskrnl/rtl/atom.c @@ -65,6 +65,9 @@ static PRTL_ATOM_TABLE GlobalAtomTable = NULL; /* FUNCTIONS *****************************************************************/ +/* + * @implemented + */ NTSTATUS STDCALL NtAddAtom(IN PWSTR AtomName, OUT PRTL_ATOM Atom) @@ -81,6 +84,9 @@ NtAddAtom(IN PWSTR AtomName, } +/* + * @implemented + */ NTSTATUS STDCALL NtDeleteAtom(IN RTL_ATOM Atom) { @@ -95,6 +101,9 @@ NtDeleteAtom(IN RTL_ATOM Atom) } +/* + * @implemented + */ NTSTATUS STDCALL NtFindAtom(IN PWSTR AtomName, OUT PRTL_ATOM Atom) @@ -111,6 +120,9 @@ NtFindAtom(IN PWSTR AtomName, } +/* + * @implemented + */ NTSTATUS STDCALL NtQueryInformationAtom(RTL_ATOM Atom, ATOM_INFORMATION_CLASS AtomInformationClass, @@ -151,6 +163,9 @@ NtQueryInformationAtom(RTL_ATOM Atom, } +/* + * @implemented + */ NTSTATUS STDCALL RtlCreateAtomTable(ULONG TableSize, PRTL_ATOM_TABLE *AtomTable) @@ -202,6 +217,9 @@ RtlCreateAtomTable(ULONG TableSize, } +/* + * @implemented + */ NTSTATUS STDCALL RtlDestroyAtomTable(IN PRTL_ATOM_TABLE AtomTable) { @@ -242,6 +260,9 @@ RtlDestroyAtomTable(IN PRTL_ATOM_TABLE AtomTable) } +/* + * @implemented + */ NTSTATUS STDCALL RtlEmptyAtomTable(IN PRTL_ATOM_TABLE AtomTable, IN BOOLEAN DeletePinned) @@ -291,6 +312,9 @@ RtlEmptyAtomTable(IN PRTL_ATOM_TABLE AtomTable, } +/* + * @implemented + */ NTSTATUS STDCALL RtlAddAtomToAtomTable(IN PRTL_ATOM_TABLE AtomTable, IN PWSTR AtomName, @@ -382,6 +406,9 @@ RtlAddAtomToAtomTable(IN PRTL_ATOM_TABLE AtomTable, } +/* + * @implemented + */ NTSTATUS STDCALL RtlDeleteAtomFromAtomTable(IN PRTL_ATOM_TABLE AtomTable, IN RTL_ATOM Atom) @@ -438,6 +465,9 @@ RtlDeleteAtomFromAtomTable(IN PRTL_ATOM_TABLE AtomTable, } +/* + * @implemented + */ NTSTATUS STDCALL RtlLookupAtomInAtomTable(IN PRTL_ATOM_TABLE AtomTable, IN PWSTR AtomName, @@ -498,6 +528,9 @@ RtlLookupAtomInAtomTable(IN PRTL_ATOM_TABLE AtomTable, } +/* + * @unimplemented + */ NTSTATUS STDCALL RtlPinAtomInAtomTable(IN PRTL_ATOM_TABLE AtomTable, IN RTL_ATOM Atom) @@ -534,6 +567,9 @@ RtlPinAtomInAtomTable(IN PRTL_ATOM_TABLE AtomTable, } +/* + * @implemented + */ NTSTATUS STDCALL RtlQueryAtomInAtomTable(IN PRTL_ATOM_TABLE AtomTable, IN RTL_ATOM Atom,