C is a general-purpose computer programming language used for operating systems, games and other high performance work and is clearly distinct from C++. It was developed in 1972 by Dennis Ritchie for use with the Unix operating system.
3
votes
0answers
111 views
+50
Non - blocking RPC invocation, using gSoap
Is this even possible?
I know, I can make a one-way asynchronous communication, but I want it to be two-way.
In other words, I'm asking about the request/response pattern, but non-blocking, like ...
0
votes
0answers
100 views
+100
Broken CMake and gcc under OSX
When running configure in cmake-gui on my OSX platform, I get the following error occuring:
The C compiler identification is GNU
The CXX compiler identification is GNU
Checking whether C compiler has ...
1
vote
3answers
96 views
+100
How to prepare a build job that produces .dll and unix .so on single Windows environment?
How to create a C++ single build job that will produce .dll working on windows and .so prepared to work on Unix?
Suppose that our development environment is based on Windows.
4
votes
0answers
90 views
+200
Saving a stream while playing it using LibVLC
Using LibVLC, I'm trying to save a stream while playing it. This is the python code:
import os
import sys
import vlc
if __name__ == '__main__':
filepath = <either-some-url-or-local-path>
...