mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:23:03 +00:00
10 lines
276 B
C
10 lines
276 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS user32.dll
|
|
* FILE: include/window.h
|
|
* PURPOSE: Window management definitions
|
|
*/
|
|
#include <windows.h>
|
|
|
|
#define IS_ATOM(x) \
|
|
(((ULONG_PTR)(x) > 0x0) && ((ULONG_PTR)(x) < 0x10000))
|