mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 12:23:28 +00:00
* [KERNEL32] Split off some ANSI functions from the bulk of Kernel32 Co-authored-by: Hermès BÉLUSCA - MAÏTO <[email protected]>
39 lines
847 B
C
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 */
|