c++ Programming Glossary: api's
How to use dll's? http://stackoverflow.com/questions/1345671/how-to-use-dlls without any sort of header. You can directly call Win32 API's which will dynamically load a DLL into your programs virtual.. into your programs virtual address space and call other API's which will give you what are essentially function pointers...
Is there a proper 'ownership-in-a-package' for 'handles' available? http://stackoverflow.com/questions/14878121/is-there-a-proper-ownership-in-a-package-for-handles-available knows. Most importantly what you have at hand from most C API's for example is a handle and its resource releasing function...
Can I use shared library created in C++ in a C program? http://stackoverflow.com/questions/14917952/can-i-use-shared-library-created-in-c-in-a-c-program C. However I require to use a lot of libraries that have API's only for C . So is it possible that I can create a shared object..
How to write good Unit Tests? http://stackoverflow.com/questions/1540960/how-to-write-good-unit-tests sensible unit as possible. You don't test the underlying API's you use just the code you have written. There are frameworks..
Weird compile error dealing with Winnt.h http://stackoverflow.com/questions/257134/weird-compile-error-dealing-with-winnt-h get you you the data types defines and fundamental Windows API's. You may also need to add the following #ifndef _WINUSER_ #include..
Chipmunk Physics or Box2D for C++ 2D GameEngine? http://stackoverflow.com/questions/2707106/chipmunk-physics-or-box2d-for-c-2d-gameengine used. Chipmunk is C and Box2D is C but I've heard the API's of Box2D are much worse than chipmunk's API's. For now I will.. heard the API's of Box2D are much worse than chipmunk's API's. For now I will be using the engine shape creation and collision.. for irregular polygons not concave . I value 1 Good API's 2 Easy to integrate. 3 Portability. And of course if you notice..
Confused about std::runtime_error vs. std::logic_error http://stackoverflow.com/questions/2924058/confused-about-stdruntime-error-vs-stdlogic-error often in the form of illegal arguments to internal API's. In that sense they are largely equivalent to ASSERT's but meant..
C++ Portability between Windows and Linux http://stackoverflow.com/questions/3261608/c-portability-between-windows-and-linux apps this isn't a major problem but many newer Windows API's some dark corners of older ones that don't see much use and..
Socket API or library for C++? http://stackoverflow.com/questions/4199185/socket-api-or-library-for-c question I am actually looking to find out what the Socket API's libraries are for C . I am fairly new at socket programming..
“Proper” way to store binary data with C++/STL http://stackoverflow.com/questions/441203/proper-way-to-store-binary-data-with-c-stl is contiguious. Therefore you can use it with a lot of C API's such as berkley sockets or file APIs. You can do the following..
As a Java developer, C or C++? [closed] http://stackoverflow.com/questions/463618/as-a-java-developer-c-or-c primarily to interface with the Win32 API or other native API's for that matter you won't need C . Win32 and most other API's.. for that matter you won't need C . Win32 and most other API's are written in C not C and you most likely won't need very complex..
setLastModified date with Qt http://stackoverflow.com/questions/4963295/setlastmodified-date-with-qt the dates. Now... I know some I think all actually windows API's from MS have this ability. The thing is that I am not looking..
C++ Boost.ASIO: passing accepted TCP connection from one opened socket to another using Windows APIs ( while works with Linux APIs)? http://stackoverflow.com/questions/5326564/c-boost-asio-passing-accepted-tcp-connection-from-one-opened-socket-to-anothe re assign accepted connection using Boost.ASIO and Windows API's. found this code sample added to it includes and use of namespaces..
What will be the critical section code for a shared queue accessed by two threads? http://stackoverflow.com/questions/6839425/what-will-be-the-critical-section-code-for-a-shared-queue-accessed-by-two-thread of synchronization. I'm implementing this using Win32 API's EnterCriticalSection etc. . But my curiosity is what will be..
CreateProcess and command line arguments http://stackoverflow.com/questions/8649212/createprocess-and-command-line-arguments of code that calls external programs using the Windows API's CreateProcess. I've gotten the call to work with one external..
|