In a C++ Win32 program I need to use the same string variable in the modules
main.cpp and client.cpp. Both main.cpp and client.cpp have a #include client.h
where I try to declare the global(extern) string.
Let us call the string "test_string"
How do I declare the string as global so I can use it in both modules?
Hope the question is clear enough.