10 Jan
2005
10 Jan
'05
12:49 p.m.
Eric Pouech <pouech-eric(a)wanadoo.fr> writes:
+/****************************************************************** + * NtAddAtom (NTDLL.@) + */ +NTSTATUS WINAPI NtAddAtom( const WCHAR* name, ULONG name_len, ATOM* atom ) +{ + return RtlAddAtomToAtomTable( get_global_table(), name, atom ); +}
You can't do that, if the name is a counted string you cannot ignore the length and assume it is null-terminated. -- Alexandre Julliard julliard(a)winehq.org