¡@

Home 

c++ Programming Glossary: undocumented

c++ console in a non-console application project

http://stackoverflow.com/questions/11085025/c-console-in-a-non-console-application-project

file streams pointing the console or else find and use the undocumented function that initializes the streams library for the console...

Unresolved Externals Nightmare

http://stackoverflow.com/questions/11478887/unresolved-externals-nightmare

written to ANSI C standards. The code is almost entirely undocumented and most of it looks like hieroglyphs to me. Ultimately my job..

Undocumented GCC Extension: VLA in struct

http://stackoverflow.com/questions/12058760/undocumented-gcc-extension-vla-in-struct

it is tricky to implement two the extension is completely undocumented and three the extension appears to be rarely used. Note that..

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

c winapi share improve this question Before going the undocumented route like flokra suggests I would try NetUserEnum or NetQueryDisplayInformation.. or NetQueryDisplayInformation If you want to go into undocumented land HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows NT CurrentVersion..

How to get list of GDI handles

http://stackoverflow.com/questions/13905661/how-to-get-list-of-gdi-handles

bit application running on 64 bit OSes. It uses a lot of undocumented functions so don't rely on it Credits on structures for the.. SYSTEM_INFO si GetNativeSystemInfo si NOTE as this is undocumented it may vary depending on bitness 32 64 and on Windows version...

How to subscribe to events raised within a Windows Runtime Component in C++/CX?

http://stackoverflow.com/questions/14667871/how-to-subscribe-to-events-raised-within-a-windows-runtime-component-in-c-cx

SDK tools. The second step runs winmdidl.exe a completely undocumented build tool that decompiles the .winmd file generated by the..

What are the Differences between C++ Templates and Java/C# Generics and what are the limits? [closed]

http://stackoverflow.com/questions/15857544/what-are-the-differences-between-c-templates-and-java-c-generics-and-what-are

doesn't permit addition. CON You can accidentally create undocumented constraints like the type argument T must have an addition operator..

Does std::atomic<std::string> work appropriately?

http://stackoverflow.com/questions/16876410/does-stdatomicstdstring-work-appropriately

about std atomic std string . If it is an extension it's undocumented. My money is on undefined behavior. EDIT Months later after..

Using unicode font in c++ console app

http://stackoverflow.com/questions/1922294/using-unicode-font-in-c-console-app

as already has been said . For 2K and XP there is an undocumented function SetConsoleFont e.g. read here . typedef BOOL WINAPI..

DLL redirection using manifests

http://stackoverflow.com/questions/2100973/dll-redirection-using-manifests

yes a malformed path... The file element does have an undocumented attribute called loadFrom which does what it sounds like and..

Layout of compiled objects

http://stackoverflow.com/questions/2138890/layout-of-compiled-objects

For Visual C I finally managed to dig up the well hidden undocumented compiler flags that MSVC supports using information from here..

How to code a new Windows Shell?

http://stackoverflow.com/questions/2270527/how-to-code-a-new-windows-shell

SPI_SETMINIMIZEDMETRICS ...MINIMIZEDMETRICS with undocumented flag 8 Register as the shell SetShellWindow SetProgmanWindow..

Gamma Distribution in Boost

http://stackoverflow.com/questions/2526483/gamma-distribution-in-boost

it. I discovered that there is a boost gamma_distribution undocumented that could probably be used too but it only allows to choose..

NetUIHWND and DirectUIHWND

http://stackoverflow.com/questions/4089196/netuihwnd-and-directuihwnd

Unfortunately they keep this one to themselves it is undocumented. You can try to reverse engineer it use a ListView as a guide..

Where is documentation on the Microsoft Visual Studio C++ Name Mangling Scheme?

http://stackoverflow.com/questions/491115/where-is-documentation-on-the-microsoft-visual-studio-c-name-mangling-scheme

to the CRT Library function __unDName. That's admittedly undocumented but it has been there a long long time. To use it these days..

Is MAXIMUM_WAIT_OBJECTS really 64?

http://stackoverflow.com/questions/5131807/is-maximum-wait-objects-really-64

than the documented maximum and then come to rely on such undocumented behavior thus placing requirements on any potential implementations..

BitBlt performance with Aero enabled

http://stackoverflow.com/questions/7154574/bitblt-performance-with-aero-enabled

and reduce GDI locking There are attempts of either using undocumented DWM functions or hooks to get the shared surface used by DWM...

OpenCV to use in memory buffers or file pointers

http://stackoverflow.com/questions/801199/opencv-to-use-in-memory-buffers-or-file-pointers

share improve this question There are a couple of undocumented functions in the SVN version of the libary CV_IMPL CvMat cvEncodeImage..