Tagged Questions
12
votes
5answers
4k views
Where is Boost.Process?
I need to execute a program and retrieve its stdout output in c++. I'd like my code to be cross-platform too.
Having recently discovered the wonderful world of the Boost c++ libraries for all your ...
4
votes
6answers
1k views
Portable way to get file size in C/C++
I need to determin the byte size of a file.
The coding language is C++ and the code should work with Linux, windows and any other operating system. This implies using standard C or C++ ...
2
votes
5answers
99 views
Streaming data from C++ program?
I want to stream some data from my program for other subscribers (other programs). These programs can use these data as streaming event.
What I want?
How it is done generally?
Any libraries or ...
2
votes
1answer
168 views
Is PhysicsFS platform-independent?
I'm thinking about using PhysicsFS in my game engine project, but I'd like to first make sure it's entirely platform-independent. That's because I'd like to port my engine to some rather obscure ...
2
votes
1answer
439 views
Webcam: Programmatically adjust Webcam parameters
In our project, we would like to access the webcam image programmatically.
The main problem we have is that the webcam automatically adjusts the sensitivity depending on the brightness of the captured ...
2
votes
1answer
1k views
Qt portable IPC: only QSharedMemory?
I'm looking for suggestions about choosing a portable way to achieve local IPC in a robust way, since i'm new to C++ and would like to avoid common pitfalls of fiddling with shared memory and locks; ...
1
vote
4answers
87 views
What is a platform independent way of getting unique value of current instance (e.g. pid) in C++
I would like to get a some kind (doesn't matter whether it's a process id or anything) of a unique integer value of current instance in C++ in a platform independent manner (that means no #if #else ...
1
vote
3answers
479 views
Windows Setup Project without .net dependency
I have made a custom dll for my setup project. My dll is very simple, registering few services, not CLR or any 3rd party lib dependent. Have statically linked with msi.lib only.
I have removed the ...
0
votes
2answers
44 views
How to get system environment variables using boost library?
I work on windows and MacOS, I would like to get environment variables.
How to get system environment variables using boost library?
Are there equivalent to ...
0
votes
1answer
80 views
Passing WinMain parameters to another function
I'm developing an application on Windows, but I'd also like to support other platforms (the majority of code I've written is platform independent). Anyway, I figured for developments sake I'd like to ...
0
votes
2answers
145 views
Platform independant ways of hiding console when program runs
Im looking for a way to hide the console (in windows) in my program, and ive found this code:
#if defined (__WIN32__)
#include <windows.h>
HWND hWnd = GetConsoleWindow();
...
0
votes
3answers
154 views
Platform-independent programmming with Java native code or C++ (QT, WxWidgets etc.)
I am asking myself if it would be easier and more flexible to program a multiplatform application in Java and compile it to native binaries (the way Eclipse was written) or to use a cross-platform C++ ...