mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
Tried to reduce dependancies between layers by moving ntoskrnl's private header files inside its directory Removed the need to include windows.h for ddk code Removed obsolete testing code svn path=/trunk/; revision=1213
18 lines
413 B
C
18 lines
413 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: include/atom.h
|
|
* PURPOSE: Atom declarations used by all the parts of the system
|
|
* PROGRAMMER: David Welch <[email protected]>
|
|
* UPDATE HISTORY:
|
|
* 27/06/00: Created
|
|
*/
|
|
|
|
|
|
#ifndef __INCLUDE_ATOM_H
|
|
#define __INCLUDE_ATOM_H
|
|
|
|
typedef unsigned short ATOM;
|
|
|
|
#endif /* __INCLUDE_ATOM_H */
|