Search Results

1
vote
1answer
145 views

Performance degrades when compiling with _win32_winnt=0x0501 instead of 0x400

Is anyone aware of any performance implications from changing the _win32_winnt from 0x400 to 0x0501? I am compiling C++ on VS2005. My Application is very communications oriented, doing qui …
1
vote
2answers
62 views

How can I listen to Windows events from a Java app?

I have a process written in C++ that raises a named event using CreateEvent. Is there a java implementation of the WaitForSingleObject function? Is there a better way to pass events between …