¡@

Home 

c++ Programming Glossary: raymond

How to show Windows Explorer context (right click) menu?

http://stackoverflow.com/questions/10668456/how-to-show-windows-explorer-context-right-click-menu

in your applications Explorer Shell Context Menu A Raymond Chen blog series How to host an IContextMenu And some non C..

Using v-table thunks to chain procedure calls

http://stackoverflow.com/questions/1090755/using-v-table-thunks-to-chain-procedure-calls

an example of how it works let's turn to our good friend Raymond Chen and his discussion of adjuster thunks http blogs.msdn.com..

updating a string table with UpdateResource

http://stackoverflow.com/questions/14088057/updating-a-string-table-with-updateresource

NULL wstring data L empty string to skip string ID 0 L Raymond L Chen L is L my L Hero remaining strings to complete..

Correct way to check if Windows is 64 bit or not, on runtime? (C++)

http://stackoverflow.com/questions/2140619/correct-way-to-check-if-windows-is-64-bit-or-not-on-runtime-c

c registry share improve this question Here's what Raymond Chen suggests in his blog at http blogs.msdn.com oldnewthing..

Embedded C++ : to use exceptions or not?

http://stackoverflow.com/questions/2226227/embedded-c-to-use-exceptions-or-not

away from exception based code. Stay away. Have a look at Raymond Chen's Cleaner more elegant and harder to recognize . He says..

LNK2001 error when compiling apps referencing STLport-5.1.4 with VC++ 2008

http://stackoverflow.com/questions/261377/lnk2001-error-when-compiling-apps-referencing-stlport-5-1-4-with-vc-2008

visual c linker stlport share improve this question Raymond Chen recently talked about this at The Old New Thing one cause..

Loading a dll from a dll?

http://stackoverflow.com/questions/2674736/loading-a-dll-from-a-dll

stick to these rules in DllMain see also some posts in Raymond Chen's blog . Now on Rakis answer. As I already repeated several..

Detect When Network Cable Unplugged

http://stackoverflow.com/questions/2916243/detect-when-network-cable-unplugged

c networking windows xp share improve this question Raymond Chen blogged about something similar recently. Here is the relevant..

How to keep my topmost window on top?

http://stackoverflow.com/questions/3066082/how-to-keep-my-topmost-window-on-top

override another window that specifies itself as TopMost. Raymond Chen has a good article on this. Also a duplicate of this ...

stdcall and cdecl

http://stackoverflow.com/questions/3404372/stdcall-and-cdecl

stdcall c stdcall cdecl share improve this question Raymond Chen gives a nice overview of what __stdcall and __cdecl does..

How should I use FormatMessage() properly in C++?

http://stackoverflow.com/questions/455434/how-should-i-use-formatmessage-properly-in-c

MSDN is a bit unclear on how insertions should be used but Raymond Chen notes that you should never use them when retrieving a..

How can I (is there a way to) convert an HRESULT into a system specific error message?

http://stackoverflow.com/questions/4597932/how-can-i-is-there-a-way-to-convert-an-hresult-into-a-system-specific-error-me

share improve this question This answer incorporates Raymond Chen's ideas and correctly discerns the incoming HRESULT and..

Usage limitations during the DllMain Attach and Detach process

http://stackoverflow.com/questions/5834508/usage-limitations-during-the-dllmain-attach-and-detach-process

to Steve's link here are some good relevant posts from Raymond Chen's The Old New Thing http blogs.msdn.com b oldnewthing archive..

C++ string memory management

http://stackoverflow.com/questions/608370/c-string-memory-management

improve this question You are stepping into the shoes of Raymond Chen. He did the exact same thing writing a Chinese dictionary..

Compilers and argument order of evaluation in C++

http://stackoverflow.com/questions/621542/compilers-and-argument-order-of-evaluation-in-c

conventions to skip surprises. There is a nice article on Raymond Chen' blog if you are interested. You may also want to take..

Getting another process command line in Windows

http://stackoverflow.com/questions/6530565/getting-another-process-command-line-in-windows

process hasn't already mangled that section of memory. Raymond Chen discussed this awhile back on The Old New Thing . share..

What happens to global variables declared in a DLL?

http://stackoverflow.com/questions/75701/what-happens-to-global-variables-declared-in-a-dll

too in the constructors. So avoid locking something. See Raymond Chen's excellent blog on the subject http blogs.msdn.com oldnewthing..

DLL_PROCESS_ATTACH failing to execute on Windows 7 C++

http://stackoverflow.com/questions/8556782/dll-process-attach-failing-to-execute-on-windows-7-c

7 messagebox loadlibrary share improve this question Raymond Chen has something to say about this in his blog entry titled..

What are the different calling conventions in C/C++ and what do each mean?

http://stackoverflow.com/questions/949862/what-are-the-different-calling-conventions-in-c-c-and-what-do-each-mean

improve this question See Wikipedia article and also Raymond Chen's series First Second Third this is mostly what you're..

Does several levels of base classes slow down a class/struct in c++?

http://stackoverflow.com/questions/99510/does-several-levels-of-base-classes-slow-down-a-class-struct-in-c

to the 'this' pointer is required before making the call. Raymond Chen describes how this works for COM objects. Basically calling..