¡@

Home 

c++ Programming Glossary: software

How to debug heap corruption errors?

http://stackoverflow.com/questions/1010106/how-to-debug-heap-corruption-errors

is ridiculously flexible I've debugged large server software with many heap issues using it. When all else fails you can..

What's “wrong” with C++ wchar_t and wstrings? What are some alternatives to wide characters?

http://stackoverflow.com/questions/11107608/whats-wrong-with-c-wchar-t-and-wstrings-what-are-some-alternatives-to-wide

simple text algorithms either. This means that portable software cannot use wchar_t either as a common representation for text.. that use other encodings. Another alternative used by some software is to choose a cross platform representation such as unsigned..

Why is transposing a matrix of 512x512 much slower than transposing a matrix of 513x513?

http://stackoverflow.com/questions/11413855/why-is-transposing-a-matrix-of-512x512-much-slower-than-transposing-a-matrix-of

The explanation comes from Agner Fog in Optimizing software in C and it reduces to how data is accessed and stored in the..

Is gcc4.7 buggy about regular expressions? [duplicate]

http://stackoverflow.com/questions/12530406/is-gcc4-7-buggy-about-regular-expressions

complaints. IMO that's the problem with freely distributed software. No one is held accountable for errors. With all due respect..

C++: what regex library should I use?

http://stackoverflow.com/questions/181624/c-what-regex-library-should-i-use

the Boost Software License but this question is not about software licenses 2 C not C POSIX regex #include regex.h regcomp regexec..

How does C compute sin() and other math functions?

http://stackoverflow.com/questions/2284860/how-does-c-compute-sin-and-other-math-functions

on supports trig functions in hardware so there must be a software algorithm somewhere right Edit I'm aware of several ways that..

What's your favorite profiling tool (for C++) [closed]

http://stackoverflow.com/questions/26663/whats-your-favorite-profiling-tool-for-c

VTune but have never tried it Edit I'm mostly looking for software that will instrument the code as I guess that's about the only..

What can I use to profile C++ code in Linux?

http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux

generality the more layers of abstraction you have in your software the more likely you are to find that that is the cause of performance..

What is the bit size of long on 64-bit Windows?

http://stackoverflow.com/questions/384502/what-is-the-bit-size-of-long-on-64-bit-windows

are 64 bit' . This has the merit of meaning that 32 bit software can be recompiled without change. It has the demerit of being.. from the ones needed on Unix platforms. If you design your software around platform neutral integer type names probably using the..

Why would anybody use C over C++? [closed]

http://stackoverflow.com/questions/497786/why-would-anybody-use-c-over-c

at seeing optimizations a good C programmer will see The software you're writing is trivial or nearly so whip out the tiny C compiler..

Open source PDF library for C/C++ application? [closed]

http://stackoverflow.com/questions/58730/open-source-pdf-library-for-c-c-application

LibHaru Haru is a free cross platform open sourced software library for generating PDF written in ANSI C. It can work as..

Why artificially limit your code to C? [closed]

http://stackoverflow.com/questions/649789/why-artificially-limit-your-code-to-c

is almost certainly really a C compiler so there are no software cost implications C is just as portable as C C code can be just.. is almost certainly really a C compiler so there are no software cost implications There are often significant cost implications..

Create Random Number Sequence with No Repeats

http://stackoverflow.com/questions/693880/create-random-number-sequence-with-no-repeats

to build these out of hardware but I've also done them in software. It uses a shift register with some of the bits xor'ed and fed..

How to Compile for OS X in Linux or Windows?

http://stackoverflow.com/questions/693952/how-to-compile-for-os-x-in-linux-or-windows

fits your needs. If your program is free or open source software then you may wish instead to create a MacPorts portfile documentation.. the preferred way to install portable free or open source software on Mac OS X. MacPorts has been known to run on Linux in the..

Exotic architectures the standards committees care about

http://stackoverflow.com/questions/6971886/exotic-architectures-the-standards-committees-care-about

for people who have not yet migrated all their Univac software. Key points 36 bit words CHAR_BIT 9 ones complement 72 bit non..

OpenCV 2.3 C++ Visual Studio 2010

http://stackoverflow.com/questions/7011238/opencv-2-3-c-visual-studio-2010

unziped OpenCV 2.3.0 win superpack.exe without using CMake software. What am I doing wrong c c visual studio 2010 visual studio..

Is gcc4.7 buggy about regular expressions? [duplicate]

http://stackoverflow.com/questions/12530406/is-gcc4-7-buggy-about-regular-expressions

take it just as seriously. But if you don't like how Free Software works then don't use it feel free to take your money elsewhere..

C99 stdint.h header and MS Visual Studio

http://stackoverflow.com/questions/126279/c99-stdint-h-header-and-ms-visual-studio

Create registry entry to associate file extension with application in C++

http://stackoverflow.com/questions/1387769/create-registry-entry-to-associate-file-extension-with-application-in-c

it. Windows Registry Editor Version 5.00 HKEY_CURRENT_USER Software Classes blergcorp.blergapp.v1 shell open command @ c path to.. shell open command @ c path to app.exe 1 HKEY_CURRENT_USER Software Classes .blerg @ blergcorp.blergapp.v1 Now you probably want.. something like this Registry.SetValue @ HKEY_CURRENT_USER Software Classes blergcorp.blergapp.v1 shell open command null @ c path..

Best open XML parser for C++ [closed]

http://stackoverflow.com/questions/170686/best-open-xml-parser-for-c

power comes at a premium. RapidXML is licensed under Boost Software License and its source code is freely available. Features Parsing..

C++: what regex library should I use?

http://stackoverflow.com/questions/181624/c-what-regex-library-should-i-use

to my attention 1 Boost.Regex I need to go read the Boost Software License but this question is not about software licenses 2 C..

How to compile a 64-bit application using Visual C++ 2010 Express?

http://stackoverflow.com/questions/1865069/how-to-compile-a-64-bit-application-using-visual-c-2010-express

step by step instructions Download and install the Windows Software Development Kit version 7.1. Visual C 2010 Express does not..

How do I start a new CUDA project in Visual Studio 2008?

http://stackoverflow.com/questions/2046228/how-do-i-start-a-new-cuda-project-in-visual-studio-2008

with 8.0 for VS2005 instead of VS2008 HKEY_CURRENT_USER Software Microsoft VisualStudio 9.0 Languages Language Services C C NCB.. with 8.0 for VS2005 instead of VS2008 HKEY_CURRENT_USER Software Microsoft VisualStudio 9.0 Languages Language Services C C NCB..

Easy way to parse a url in C++ cross platform?

http://stackoverflow.com/questions/2616011/easy-way-to-parse-a-url-in-c-cross-platform

It uses Boost.Spirit and is also released under the Boost Software License. The library is cpp netlib which you can find the documentation..

What is move semantics?

http://stackoverflow.com/questions/3106110/what-is-move-semantics

is move semantics I just finished listening to the Software Engineering radio podcast interview with Scott Meyers regarding..

Developing Internet Explorer Extensions?

http://stackoverflow.com/questions/5643819/developing-internet-explorer-extensions

DefaultTextToHighlight public static string RegData Software MyIEExtension DllImport ieframe.dll public static extern int.. section pointer which will be something like HKU S 1 7 Software AppDataLow In metro IE 10 mode tabs run in Enhanced Protected.. section pointer which will be something like HKU S 1 7 Software AppDataLow In metro IE 10 mode tabs run in Enhanced Protected..

Collect crash .dmp and .hdmp files after a crash of C++ service and a user-mode app

http://stackoverflow.com/questions/11479571/collect-crash-dmp-and-hdmp-files-after-a-crash-of-c-service-and-a-user-mode

creation of user mode dumps . I set the HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows Windows Error Reporting LocalDumps DumpType..

How Do I Stop An Application From Opening

http://stackoverflow.com/questions/1284674/how-do-i-stop-an-application-from-opening

is simple add a new registry key to HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows NT CurrentVersion Image File Execution Options.. is the exported registry key. REGEDIT4 HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows NT CurrentVersion Image File Execution Options..

How to get Linux distribution name and version?

http://stackoverflow.com/questions/1320401/how-to-get-linux-distribution-name-and-version

name and version In Windows I read the registry key SOFTWARE Microsoft Windows NT CurrentVersion ProductName to get the full..

Visual Studio 2012 - Required file “tracker.exe” is missing

http://stackoverflow.com/questions/13422178/visual-studio-2012-required-file-tracker-exe-is-missing

value of the registry key HKEY_LOCAL_MACHINE SOFTWARE Microsoft Microsoft SDKs Windows v7.0A. Possible solutions Install..

Getting a list of user profiles on a computer in C++ Win32

http://stackoverflow.com/questions/1376036/getting-a-list-of-user-profiles-on-a-computer-in-c-win32

you want to go into undocumented land HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows NT CurrentVersion ProfileList has a incomplete..

C++ - RegCreateKeyEx success but without result

http://stackoverflow.com/questions/14585286/c-regcreatekeyex-success-but-without-result

dwDisposition if RegCreateKeyEx HKEY_LOCAL_MACHINE TEXT SOFTWARE aaTestCompany testApp 0 NULL 0 KEY_WRITE NULL hkey dwDisposition.. key will actually be created beneath HKEY_LOCAL_MACHINE SOFTWARE Wow6432Node . See 32 bit and 64 bit Application Data in the..

Determine highest .NET Framework version

http://stackoverflow.com/questions/182910/determine-highest-net-framework-version

share improve this question HKEY_LOCAL_MACHINE SOFTWARE Microsoft NET Framework Setup NDP Is that what you're looking..

How to skip common classes in VS 2008 when stepping in?

http://stackoverflow.com/questions/2062881/how-to-skip-common-classes-in-vs-2008-when-stepping-in

and a 32 bit Visual Studio the key is HKEY_LOCAL_MACHINE SOFTWARE Wow6432Node Microsoft VisualStudio 9.0 NativeDE StepOver The..

Disable script debugging in IWebBrowser2 OLE control? C++

http://stackoverflow.com/questions/2936279/disable-script-debugging-in-iwebbrowser2-ole-control-c

its methods. Say that your GetOptionKeyPath method returns SOFTWARE MyCompany MyApp IE as the new registry path. To ensure that..

How to read a value from the Windows registry

http://stackoverflow.com/questions/34065/how-to-read-a-value-from-the-windows-registry

HKEY hKey LONG lRes RegOpenKeyExW HKEY_LOCAL_MACHINE L SOFTWARE Perl 0 KEY_READ hKey bool bExistsAndSuccess lRes ERROR_SUCCESS..

c++ get registry key returns only one char

http://stackoverflow.com/questions/4483087/c-get-registry-key-returns-only-one-char

data sizeof char LONG rc RegOpenKeyEx HKEY_LOCAL_MACHINE L SOFTWARE Microsoft Windows CurrentVersion Run 0 KEY_READ regkey1 if rc..

MS Crypto API behavior on Windows XP vs Vista/7

http://stackoverflow.com/questions/4495247/ms-crypto-api-behavior-on-windows-xp-vs-vista-7

the Name value of the registry key HKEY_LOCAL_MACHINE SOFTWARE Microsoft Cryptography Defaults Provider Types Type 024 to see..

How to set breakpoint at the very beginning of program execution

http://stackoverflow.com/questions/5513654/how-to-set-breakpoint-at-the-very-beginning-of-program-execution

the key name to your .exe REGEDIT4 HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows NT CurrentVersion Image File Execution Options..

BadImageFormatException encountered with WcfSvcHost and IIS WCF host

http://stackoverflow.com/questions/727313/badimageformatexception-encountered-with-wcfsvchost-and-iis-wcf-host

a lot of data and I'm not sure what I'm looking for . HKLM SOFTWARE Microsoft Fusion PublisherPolicy Default policy.8.0.msvcm80__b03f5f7f11d50a3a..

Determine path to registry key from HKEY handle in C++

http://stackoverflow.com/questions/937044/determine-path-to-registry-key-from-hkey-handle-in-c

LONG ret ERROR_SUCCESS ret RegOpenKey HKEY_LOCAL_MACHINE L SOFTWARE Microsoft key if ret ERROR_SUCCESS wprintf_s L Key path for..