Commit e4b4dfacb2403d330d8933ad779fd7c61647769b

Authored by Perry Werneck
1 parent d703d05b
Exists in master and in 1 other branch develop

Adjustments in the new IPC library.

client/lib3270++.cbp
... ... @@ -8,7 +8,7 @@
8 8 <Option compiler="gcc" />
9 9 <Build>
10 10 <Target title="Debug">
11   - <Option output="../../.bin/Debug/lib3270++" prefix_auto="1" extension_auto="1" />
  11 + <Option output=".bin/Debug/ipc3270" prefix_auto="1" extension_auto="1" />
12 12 <Option object_output=".obj/Debug/" />
13 13 <Option type="1" />
14 14 <Option compiler="gcc" />
... ... @@ -41,18 +41,12 @@
41 41 <Add option="`pkg-config --libs lib3270`" />
42 42 </Linker>
43 43 <Unit filename="../include/config.h.in" />
44   - <Unit filename="../include/lib3270++.h" />
45   - <Unit filename="../include/lib3270.h" />
46   - <Unit filename="../include/lib3270/action_table.h" />
47   - <Unit filename="../include/lib3270/actions.h" />
48   - <Unit filename="../include/lib3270/popup.h" />
49   - <Unit filename="../include/lib3270/session.h" />
50   - <Unit filename="private.h" />
51 44 <Unit filename="src/core/abstract.cc" />
52 45 <Unit filename="src/core/events.cc" />
53 46 <Unit filename="src/core/host.cc" />
54 47 <Unit filename="src/core/linux/request.cc" />
55 48 <Unit filename="src/core/session.cc" />
  49 + <Unit filename="src/include/ipc-client-internals.h" />
56 50 <Unit filename="src/os/linux/request.cc" />
57 51 <Unit filename="src/os/linux/session.cc" />
58 52 <Unit filename="src/os/windows/request.cc" />
... ...
client/src/include/ipc-client-internals.h
... ... @@ -28,9 +28,9 @@
28 28 */
29 29  
30 30 /**
31   - * @file src/lib3270++/private.h
  31 + * @file ipc-client-internals.h
32 32 *
33   - * @brief
  33 + * @brief Private definitions for lib3270/pw3270 ipc client library.
34 34 *
35 35 * @author perry.werneck@gmail.com
36 36 *
... ... @@ -216,7 +216,7 @@
216 216  
217 217 }
218 218  
219   - /// @brief IPC Based acess (Access and active instance of pw3270 or pw3270d)
  219 + /// @brief IPC Based acess (Access an active instance of pw3270 or pw3270d)
220 220 namespace IPC {
221 221  
222 222 class Session;
... ...