-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRWIni.h
131 lines (97 loc) · 2.6 KB
/
RWIni.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#pragma once
class CRWIni
{
public:
CRWIni(void);
~CRWIni(void);
void SetPort(int value);
int GetPort();
void SetAudioPort(int value);
int GetAudioPort();
void SetPCPort(int value);
int GetPCPort();
void SetOutPort(int value);
int GetOutPort();
void SetOutPort2(int value);
int GetOutPort2();
void SetEvtPort(int value);
int GetEvtPort();
void SetEvtSendPort(int value);
int GetEvtSendPort();
void SetOuterBCControlPort(int value);
int GetOuterBCControlPort();
void SetRecord(int value);
int GetRecord();
void SetJT(int value);
int GetJT();
void SetPop(int value);
int GetPop();
void SetSocketConnect(int value);
int GetSocketConnect();
void SetPlayTime(int value);
int GetPlayTime();
void SetPath(CString strPath);
CString GetPath();
void SetPathRecord(CString strPath);
CString GetPathRecord();
void SetIP_Server(CString strValue);
CString GetIP_Server();
void SetIP_MIC(CString strValue);
CString GetIP_MIC();
void SetIP_Out(CString strValue);
CString GetIP_Out();
void SetIP_Out2(CString strValue);
CString GetIP_Out2();
void SetCallA(CString strValue);
CString GetCallA();
void SetCallB(CString strValue);
CString GetCallB();
void SetOuter(CString strValue);
CString GetOuter();
void SetIP_OUT_BC_CONTROL(CString strVal);
CString GetIP_OUT_BC_CONTROL();
void SetIP_MIC_Reocrd(CString strValue);
CString GetIP_MIC_Reocrd();
void SetIP_AUX(CString strValue);
CString GetIP_AUX();
void SetIP_Monitor(CString strValue);
CString GetIP_Monitor();
void Set_APP_Title(CString strValue);
CString Get_APP_Title();
void Set_Sign_Left(CString strValue);
CString Get_Sign_Left();
void Set_Sign_Right(CString strValue);
CString Get_Sign_Right();
void SetMainFlag(int nMain);
int GetMainFlag();
void SetNetOF(int nNetOF);
int GetNetOF();
void SetVolume(int nVolume);
int GetVolume();
public:
CString ReadStr(CString appName,CString keyName);
private:
CString m_rtnStr;
private:
void WriteInter(CString appName, CString keyName, int value);
int ReadInter(CString appName, CString keyName);
private:
CString m_strIniPath;
private:
CString m_strCallA;
CString m_strCallB;
CString m_strOuter;
CString m_strIP_MIC;
CString m_strIP_SERVER;
CString m_strPath;
CString m_strPathRecord;
CString m_strIP_Out;
CString m_strIP_Out2;
CString m_strIP_Outer_BC_Control;
CString m_strIP_MICRecord;
CString m_strIP_AUX;
CString m_strIP_Monitor;
CString m_strAPP_Title;
CString m_strAPP_SignL;
CString m_strAPP_SignR;
};