0
votes
4answers
36 views
record mouse movements, clicks and keyboard input with Java or C++
I want to be able to record mouse movements, clicks and keyboard input from a user. It would be great if it was a cross platform solution.
I'd like to get back something like this (pseudo code):
…
5
votes
4answers
95 views
Most efficient way to find the greatest of three ints
(pseudo code)
function highest(i, j, k)
{
if(i > j && i > k)
{
return i;
}
else if (j > k)
{
return j;
}
else
{
return k;
}
}
I think that works, but …
0
votes
2answers
28 views
Two classes and inline functions
I have two classes and both of them uses some of the other class, on example:
// class1.h
class Class1;
#include "class2.h"
class Class1 {
public:
static Class2 *C2;
...
};
// class2.h
class …
9
votes
4answers
1k views
Getting gdb to save a list of breakpoints?
OK, info break lists the breakpoints, but not in a format that would work well with reusing them using the --command as in this question. Does gdb have a method for dumping them into a file …
1
vote
1answer
18 views
Cannot get a proper Vista / 7 theme for toolbar with wxWidgets
Hi,
I cannot get a proper theme for toolbars in Vista / 7 with wxWidgets (c++). For some unknown reason, I get gray bar now (as you can see here). I want it to get this look instead. I've linked …
0
votes
2answers
31 views
Socket programming Xp > Vista, Vista > XP
I am developing a program which sends images from one computer to another (similar to remote assistance without mouse/keyboard input). The two computers I use to test this are one Windows XP machine …
0
votes
1answer
73 views
Production code for finding junction in a linked list
Hi all,
I was asked this question in some interview.
I was required to write code for finding junction in a linked list (which is in form of Y with both arms not necessarily equal) for production …
0
votes
6answers
89 views
c++, truncate a char array
Hello, I'm working on a project where I have a Time class and I need to format the time.
void Time::FormatTime(char *string, unsigned int max_string_len) {
ostrstream fd;
ft << hour …
2
votes
1answer
63 views
What is the best way to split up utility functions in a library to maximize reusability?
I have a recurring problem with a statically linked library I've written (or in some cases, code was accumulated from open sources).
This library, MFC Toolbox Library by name, has a lot of free …
0
votes
1answer
32 views
Getting volume change notifications on Vista/7 (C++)
I'm trying to get notifications whenever the master volume changes on Windows Vista/7. This is the code I'm using:
#include <audiopolicy.h>
#include <audioclient.h>
#include …
4
votes
5answers
949 views
Managed C++ wrappers for legacy C++ libraries
We're looking at writing a .Net-callable wrapper for some legacy C++ libraries using managed C++.
It all looks pretty easy. Is there anything we need to watch out for?
4
votes
5answers
157 views
#if 0 as a define
I need a way to define a FLAGS_IF macro (or equivalent) such that
FLAGS_IF(expression)
<block_of_code>
FLAGS_ENDIF
when compiling in debug (e.g. with a specific compiler switch) compiles to
…
5
votes
5answers
69 views
How do I define friends in global namespace within another C++ namespace?
Hi,
I'd like to define a binary operator on in the global namespace. The operator
works on a class that is defined in another namespace and the operator should get
access to the private members of …
2
votes
6answers
141 views
Input asked for better programming practices
As I'm learning C++ I started implementing some common datastructures as a form of practice.
The first one being a Stack (this was the first to spring in mind).
I've done some programming and it's …
2
votes
1answer
49 views
Win32: BitTest, BitTestAndComplement, … <- How to disable this junk?
WinNT.h has the following lines in it, in the VS2008 SP1 install:
#define BitTest _bittest
#define BitTestAndComplement _bittestandcomplement
#define BitTestAndSet _bittestandset
#define …
