26 lines
474 B
C
26 lines
474 B
C
/*
|
|
* NewOswan
|
|
* emulate.h:
|
|
* Based on the original Oswan-unix
|
|
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
|
|
*
|
|
*/
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#ifndef EMULATE_H
|
|
#define EMULATE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern char app_window_title[256];
|
|
extern int app_terminate;
|
|
|
|
void ws_emulate(void);
|
|
|
|
#endif /* EMULATE_H */ |