mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
21 lines
271 B
C
21 lines
271 B
C
#ifndef __INCLUDE_DDK_NTDEF_H
|
|
#define __INCLUDE_DDK_NTDEF_H
|
|
|
|
struct _KTHREAD;
|
|
struct _ETHREAD;
|
|
struct _EPROCESS;
|
|
|
|
#ifndef NTKERNELAPI
|
|
#define NTKERNELAPI STDCALL
|
|
#endif
|
|
|
|
#ifndef NTSYSAPI
|
|
#define NTSYSAPI STDCALL
|
|
#endif
|
|
|
|
#ifndef NTAPI
|
|
#define NTAPI STDCALL
|
|
#endif
|
|
|
|
#endif
|