14 lines
277 B
C
14 lines
277 B
C
#ifndef __SYSINPUT_H_INCLUDED
|
|
#define __SYSINPUT_H_INCLUDED
|
|
|
|
#include "wintype.h"
|
|
#include "msg_queue.h"
|
|
|
|
extern PMSG_QUEUE Sys_Queue;
|
|
extern INT32 Sys_Exit_Code;
|
|
|
|
extern HRESULT Sys_enable_input(void);
|
|
extern void Sys_wait_for_input(void);
|
|
|
|
#endif /* __SYSINPUT_H_INCLUDED */
|