Search Results

2
votes

Reading a windows *.dmp file

If you mean a dump file created by windows (either small memory dump, kernel memory dump or full memory dump) that is created after a system crash then you need WinDBG ref: …
9
votes

How do you add a timed delay to a C++ program?

Win32: Sleep(milliseconds) is what you what unix: usleep(microseconds) is what you want. sleep() only takes a number of seconds which is often too long. …
0
votes

Why is fread reaching the EOF early?

Also worth noting that simply including binmode.obj into your link command will do this for you for all file opens. …
2
votes

Is using size() for the 2nd expression in a for construct always bad?

Worth noting that even if you are dealing with millions of items the overhead is going to be negligible. In any case this should really be written using iterator - as there may be more over …
0
votes

Static and dynamic library linking

Sounds like it's probably the linker (ld/unix), as (most versions that I've used of) ld links the libraries in from left to right - and if there is a reference in the first one that is required by …
0
votes

Caching a const char * as a return type

What I've often done when I need this sort of functionality is to have a char * pointer in the class - initialized to null - and allocate when required. viz: class CacheName …
0
votes

How to easily map c++ enums to strings

I'd be tempted to have a map m - and embedd this into the enum. setup with m[MyEnum.VAL1] = "Value 1"; and all is done. …
1
vote

Double Negation in C++ code.

Every time I see code like this it makes me want to scream NO, very loudly. It's a trick to avoid writing (variable != 0), it saves a few bytes - should make no difference to the code gener …
1
vote

What can modify the frame pointer?

It's not hard to mangle the frame pointer - if you look at the disassembly of a routine you will see that it is pushed at the start of a routine and pulled at the end - so if anything overwrites th …
0
votes

Does stl in c++ have tree data structure.If not any c++ implementation for tree structure?

I've used this before tree.hh: an STL-like C++ tree class …
3
votes

Is it feasible to convert a desktop based MFC C++ application to a web app

The short answer is that it is feasible, don't use java, and that it will be a considerable amount of work. A good few years ago (around the time of IE5) I was asked by a client to answer a …
5
votes

C++ Builder or Visual Studio for native C++ development?

The simple answer is that for pure C++ development it has to be VC++. To expand: as a pure C++ development environment you simply cannot beat VC++, the debugger is better, the IDE is superi …
3
votes

Opening an OpenDialog from Vis C++ console app?

There isn't really any difference between a console application and a GUI application, except for entry point (WinMain in a 'GUI' app), and a console app will have a console window opened during st …