-
Notifications
You must be signed in to change notification settings - Fork 1
/
xpower-io.c
65 lines (49 loc) · 938 Bytes
/
xpower-io.c
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
/*
** Copyright (C) 2011 XXX all rights reserved.
**
** Created by [email protected] on 01/11/2011
**
*/
#include "xpower-io.h"
int _xread_init(void){
return __xread_init();
}
int _xread_company(void){
return __xread_company();
}
int _xread_substation(void){
return __xread_substation();
}
int _xread_loadarea(void){
return __xread_loadarea();
}
int _xread_section(void){
return __xread_section();
}
int _xread_node(void){
return __xread_node();
}
int _xread_breaker(void){
return __xread_breaker();
}
int _xread_load(void){
return __xread_load();
}
int _xread_generator(void){
return __xread_generator();
}
int _xread_voltage(void){
return __xread_voltage();
}
int _xread_branch(void){
return __xread_branch();
}
int _xread_vxformer(void){
return __xread_vxformer();
}
int _xread_svc(void){
return __xread_svc();
}
int _xread_shunt(void){
return __xread_shunt();
}