Search Results

3
votes

C++ Which is faster: Stack allocation or Heap allocation

Usually stack allocation just consists of subtracting from the stack pointer register. This is tons faster than searching a heap. Sometimes stack allocation requires adding a page(s) of vi …
-2
votes

Case-insensitive UTF-8 string collation for SQLite (C/C++)

I agree there's no standard C/C++ library function for this, but that might not be the main problem in this posting. From the amount of code posted, it's not obvious if the calls to assert …
0
votes

static variables in an inlined function

Inlining means that executable code (instructions) is inlined into the calling function's code. The compiler can choose to do that regardless of whether you've asked it to. That has no effect on …
0
votes

Can a recursive function be inline?

"How does the compiler decide whether to inline a function or not ?" That depends on the compiler, the options that were specified, the version number of the compiler, maybe how much memory …
-1
votes

UTF usage in C++ code

In internal representation inside the code, you'd better do this for both European and non-European characters: \uNNNN Characters in the range \u0020 to \u007E, and a little bit of …
-1
votes

Are Thread Input queues global?

There's an API that will let you merge your spyware's input queue with the user's banking application. This kind of thing is gradually getting closed down. …
0
votes

Is it useful to test the return of “new” in C++?

Usually no one tests the return of new in new code because Visual Studio now throws the way the standard says. In old code if a hack has been done to avoid throwing then you'd still better …
0
votes

Is this C++ implementation for an Atomic float safe?

Either you or I have some studying to do about references to objects that were formerly on the stack. …
1
vote

How can a Windows service execute a GUI application?

Several people suggested WTSEnumerateSessions and CreateProcessAsUser. I wonder why no one suggested WTSGetActiveConsoleSessionId, since you said you only want to target one logged in user. …
3
votes

What is the difference between an int and a long in C++?

For the most part, the number of bytes and range of values is determined by the CPU's architecture not by C++. However, C++ sets minimum requirements, which litb explained properly and Martin York …
2
votes

GCC: program doesn’t work with compilation option -O3

As an experiment, try to see if this will force the compiler to round everything consistently. volatile float d1=distance(point,p1) ; volatile float d2=distance(point,p2) ; return d …
0
votes

launch app, capture stdout and stderr in c++

Microsoft's CRTs and the MSDN library do include the system function and the _popen function. …
-2
votes

When should you not use virtual destructors?

The performance answer is the only one I know of which stands a chance of being true. If you've measured and found that de-virtualizing your destructors really speeds things up, then you've probab …
1
vote

Screen Rotation on Pocket PC

For one thing, it seems likely that SetScreenOrientation is going to give you another OnSize notification, so you want to detect recursive calls and do nothing when that happens. More impor …
1
vote

Multi-byte character set in MFC application

For _getmbcp, MSDN says "A return value of 0 indicates that a single byte code page is in use." That sure makes it not very useful. Try one of these: GetUserDefaultLCID GetSystemDefaultLCID GetACP. …

1 2 next
15 30 50 per page