Search Results

1
vote

What libraries do I need to link my mixed-mode application to?

As a bare minimum: mscoree.lib MSVCRT.lib mfc90.lib (adjust version appropriately) And iterate from there. …
0
votes

How should I unit test a code-generator?

Yes, results are the ONLY thing that matters. The real chore is writing a framework that allows your generated code to run independently... spend your time there. …
2
votes

In C++/Windows how do I get the network name of the computer I’m on?

You'll want Win32's GetComputerName: http://msdn.microsoft.com/en-us/library/ms724295(VS.85).aspx …
0
votes

Playing wave file ends immediatly (C++, Windows)

I don't have the time to Google too much for this, but I know that either Larry Osterman or Raymond Chen blogged about a similar situation. I'll check back later when I have more time to se …
2
votes

Windows/C++: How do I determine the share name associated with a shared drive?

If all else fails, you could always use NetShareEnum and call NetShareGetInfo on each. …
2
votes

What is the easiest way to parse an INI File in C++?

Just use the Win32 APIs. Don't worry, they're easy as pie. …
0
votes

How do you create a debug only function that takes a variable argument list? Like printf()

What platforms are they not available on? stdarg is part of the standard library: http://www.op …
0
votes

How do you create a debug only function that takes a variable argument list? Like printf()

Ahem... Visual C++ most DEFINITELY DOES support it: http://msdn.microsoft.com/en-us/library/kb57fad8(VS …
-6
votes

When do you use the “this” keyword?

Never. Ever. If you have variable shadowing, your naming conventions are on crack. I mean, really, no distinguishing naming for member variables? Facepalm …
1
vote

Notification of drop in drag-drop in Windows

There are a few ambiguities in your question. What operation needs to be successful? For everything you want to know about drag and drop, browse through these search results (multiple pages …
0
votes

How can I convert types in C++ ?

If the structs were the same internally, you could do a reinterpret_cast; however, since it looks like you have 16-bit vs 32-bit fields, you're probably stuck converting on each call, or writing wr …
2
votes
3
votes

how to merge two BST’s efficiently?

Flatten trees into sorted lists. Merge sorted lists. Create tree out of merged list. IIRC, that is O(n1+n2). …