Search Results

7
votes
3answers
904 views

Array of zero length

I am working on refactoring some old code and have found few structs containing zero length arrays (below). Warnings depressed by pragma, of course, but I've failed to create by "new" structures co …
2
votes
5answers
443 views

::FindWindow fails from Service application

Windows API ::FindWindow function fails when called from Service application. GetLastError() also returns 0 (success?). Is this some privilege\access right problem? Do you think it's design problem …
1
vote
4answers
509 views

Simple anonymous pipes - what wrapper model you use? (WinAPI, C++)

I have two running processes in Windows, and each process has a pipe to the other. I want to serialize a complicated class and transmit it from one process to the other. I already have the …
0
votes
2answers
361 views

Read\write boost::binary_oarchive to pipe.

Hello. I am continue to build two simple processes throwing class objects one to another (see my previous post) through simple (anonymous) pipes. Now I revealed for myself boost::serialization (tha …
2
votes
4answers
442 views

Is this possible use ellipsis in macro? Can it be converted to template?

Having implemented CLogClass to make decent logging I also defined macro, but it works only with one parameter... class CLogClass { public: static void DoLog(LPCTSTR sMessag …
1
vote
2answers
68 views

Do you know tool building tree of include files in project\file?

Say, I'd like to have a tool (or script?) taking project (or .h file) and building searchable tree of "includes" included into it (of included into of included into and so so on). Is there exist so …
0
votes
1answer
48 views

Server application have to make pings to N clients. Is there way to make it multithreaded?

I write server application (Windows Server 2003) making upto 1000 ping calls to clients and waiting for receive responses. As ping uses ICMP connection, I've found no way to define from which IP th …
0
votes

What is the best source to learn C++?

Well, I'd advise to self-learner to open wikipedia (great starter!). Next, find or steal good environment (F …
1
vote

How much faster is C++ than C#?

I suppose there are applications written in C# running fast, as well as there are more C++ written apps running fast (well C++ just older... and take UNIX too...) - the question indeed is - w …
0
votes

::FindWindow fails from Service application

No. How can I do it? …
1
vote

MFC Equivalent to Java File#isDirectory()

Sorry for possibly "inconsistency" of answer to question but may be you'll see it useful because anytime I need something like this in Windows I am NOT using MFC but regular Windows API: …
0
votes

Problem when including a file with an included file

Well, of course it doesn't working because namespace defined works only in included.cpp. Simple solution here is to to write "using" once more in main. Many things in C\C++ defined at a "file scope …