-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnwvpcmd.h
79 lines (58 loc) · 1.73 KB
/
nwvpcmd.h
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/***************************************************************************
*
* Copyright (c) 1997, 1998 Jeff V. Merkey All Rights
* Reserved.
*
* AUTHOR : Doug Ward
* FILE : NWVPCMD.H
* DESCRIP : NWVP command function prototypes and datastructures
* DATE : May 17, 1998
*
*
***************************************************************************/
#ifndef NWVPCMD_H
#define NWVPCMD_H
//=====================================
// PROTOTYPES
//=====================================
void raw_create_routine(
vndi_console *console);
void raw_delete_routine(
vndi_console *console);
void raw_online_routine(
vndi_console *console);
void raw_offline_routine(
vndi_console *console);
void raw_scan_routine(
vndi_console *console);
void raw_scana_routine(
vndi_console *console);
void raw_show_error_routine(
vndi_console *console);
void raw_scans_routine(
vndi_console *console);
void raw_error_routine(
vndi_console *console);
void raw_clear_error_routine(
vndi_console *console);
void raw_read_routine(
vndi_console *console);
void raw_write_routine(
vndi_console *console);
void display_buffer_routine(
vndi_console *console);
void set_buffer_routine(
vndi_console *console);
void blank_help_routine (
vndi_console *console);
void vndi_add_commands(
vndi_console *console);
BOOL vndi_validate_params(
vndi_console *console,
int32 min_number_of_params,
int32 max_number_of_params,
char *param_types,
void (*help_routine)(vndi_console *));
void do_nothing(
vndi_console *console);
#endif