-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig_parser.h
More file actions
36 lines (27 loc) · 1.03 KB
/
Config_parser.h
File metadata and controls
36 lines (27 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef _VRE_APP_WIZARDTEMPLATE_
#define _VRE_APP_WIZARDTEMPLATE_
/* included files */
#include "vmio.h"
#include "vmgraph.h"
#include "vmstdlib.h"
#include <string.h>
#include "vmchset.h"
#include "stdint.h"
#include "vmsms.h"
/* ---------------------------------------------------------------------------
* global variables
* ------------------------------------------------------------------------ */
VMINT layer_hdl[1]; ////layer handle array.
/* ---------------------------------------------------------------------------
* local variables
* ------------------------------------------------------------------------ */
void handle_sysevt(VMINT message, VMINT param);
void handle_keyevt(VMINT event, VMINT keycode);
void mre_draw_black_rectangle(void);
void vertical_scrolling_ucs2_text(VMWSTR ucs2_string);
void create_app_txt_path(VMWSTR text, VMSTR extt);
void checkFileExist(void);
VMINT parseText(VMSTR text);
void showResult(void);
char * strsubstr(char * str , int from, int count);
#endif