Files
reactos/dll/win32/kernel32/client/atomansi.c
T
Justin MillerandHermès BÉLUSCA - MAÏTO c81bc9f21e [KERNEL32] Split off some ANSI functions from the bulk of Kernel32 (#8555)
* [KERNEL32] Split off some ANSI functions from the bulk of Kernel32

Co-authored-by: Hermès BÉLUSCA - MAÏTO <[email protected]>
2026-02-14 04:13:23 +00:00

39 lines
847 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: dll/win32/kernel32/client/atomansi.c
* PURPOSE: Atom functions (ANSI)
*/
/* INCLUDES ******************************************************************/
#include <k32.h>
/* Forward declarations from atom.c */
ATOM WINAPI InternalAddAtom(BOOLEAN Local, BOOLEAN Unicode, LPCSTR AtomName);
ATOM WINAPI InternalFindAtom(BOOLEAN Local, BOOLEAN Unicode, LPCSTR AtomName);
/* FUNCTIONS ****************************************************************/
/*
* @implemented
*/
ATOM
WINAPI
GlobalAddAtomA(LPCSTR lpString)
{
return InternalAddAtom(FALSE, FALSE, lpString);
}
/*
* @implemented
*/
ATOM
WINAPI
GlobalFindAtomA(LPCSTR lpString)
{
return InternalFindAtom(FALSE, FALSE, lpString);
}
/* EOF */