mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
16 lines
293 B
C
16 lines
293 B
C
|
#ifndef _VMSSS_H_INCLUDED_
|
||
|
#define _VMSSS_H_INCLUDED_
|
||
|
|
||
|
#define NTOS_MODE_USER
|
||
|
#include <ntos.h>
|
||
|
#include <sm/helper.h>
|
||
|
|
||
|
/* init.c */
|
||
|
extern HANDLE VmsApiPort;
|
||
|
NTSTATUS VmsInitializeServer(VOID);
|
||
|
|
||
|
/* server.c */
|
||
|
NTSTATUS VmsRunServer(VOID);
|
||
|
|
||
|
#endif /* ndef _VMSSS_H_INCLUDED_ */
|