ˇ@

Home 

c++ Programming Glossary: api

How to use QueryPerformanceCounter?

http://stackoverflow.com/questions/1739259/how-to-use-queryperformancecounter

The warning on Boost Posix that it may not works on Win32 API put me off a bit . However I'm not really sure how to implement..

Is there a simple script to convert C++ enum to string?

http://stackoverflow.com/questions/201593/is-there-a-simple-script-to-convert-c-enum-to-string

except for the generated functions. The enums are in an API so using the solutions proposed until now is just not an option...

Is it okay to inherit implementation from STL containers, rather than delegate?

http://stackoverflow.com/questions/2034916/is-it-okay-to-inherit-implementation-from-stl-containers-rather-than-delegate

specific objects. I want to expose most of the std vector API to the user so that he she may use familiar methods size clear..

Is it possible to program iPhone in C++

http://stackoverflow.com/questions/270455/is-it-possible-to-program-iphone-in-c

possible to code iPhone apps with C while using the Cocoa API etc c iphone objective c share improve this question Short..

C++ Timer function to provide time in nano seconds

http://stackoverflow.com/questions/275004/c-timer-function-to-provide-time-in-nano-seconds

nano seconds I wish to calculate the time it took for an API to return a value. The time taken for such an action is in the.. for such an action is in the space of nano seconds. As the API is a C class function I am using the timer.h to caculate the..

Windows threading: _beginthread vs _beginthreadex vs CreateThread C++

http://stackoverflow.com/questions/331536/windows-threading-beginthread-vs-beginthreadex-vs-createthread-c

share improve this question CreateThread is a raw Win32 API call for creating another thread of control at the kernel level...

std::wstring VS std::string

http://stackoverflow.com/questions/402283/stdwstring-vs-stdstring

unicode ready. Note that std string like the C string API will consider the olé string to have 4 characters not three... and WideCharToMultiByte Win32 conversion API for more info. Thus if you work on Windows you badly want to.. have their char strings converted in wchar_t when using API like SetWindowText low level API function to set the label on..

How to determine CPU and memory consumption from inside a process?

http://stackoverflow.com/questions/63166/how-to-determine-cpu-and-memory-consumption-from-inside-a-process

finding the necessary information in the manuals WIN32 API GNU docs as well as on the Internet took me several days because.. values are easily available from the appropriate WIN32 API I just list them here for completeness. Others however need.. choice that seemed obvious at first was to use the POSIX APIs like getrusage etc. I spent some time trying to get this to..

What is the difference between _tmain() and main() in C++?

http://stackoverflow.com/questions/895827/what-is-the-difference-between-tmain-and-main-in-c

Explicitly use Unicode call wmain and for every Windows API function which takes char related arguments call the W version..

What XML parser should I use in C++?

http://stackoverflow.com/questions/9387610/what-xml-parser-should-i-use-in-c

in its entirety. The next question is Does your API need to conform to DOM or SAX I Need Exact DOM and or SAX Conformance.. Exact DOM and or SAX Conformance OK so you really need the API to be DOM and or SAX. It can't just be a SAX style push parser.. to process it. You have chosen LibXML2 Xerces's SAX style API will work in this capacity but LibXML2 is here because it's..

Linux API to list running processes?

http://stackoverflow.com/questions/939778/linux-api-to-list-running-processes

API to list running processes I need a C C API that allows me to.. API to list running processes I need a C C API that allows me to list the running processes on a Linux system.. useful suggestion as posted by ephemient is linking to the API provided by libproc which sould be available in your repo or..

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

use of wstrings and wchar_t and their use in the windows api. What is exactly wrong with wchar_t and wstring and if I want.. what are some alternatives to wide characters c winapi unicode internationalization wstring share improve this question..

Ruby win32 api interface

http://stackoverflow.com/questions/1202262/ruby-win32-api-interface

win32 api interface I need to access a few functions of the win32 library.. lParam APPBARDATA PAPPBARDATA I tried to define this api method using both api Win32API.new 'shell32' 'SHAppBarMessage'.. PAPPBARDATA I tried to define this api method using both api Win32API.new 'shell32' 'SHAppBarMessage' 'L' 'L' 'L' 'L' 'L'..

How can I use C++ code to interact with PHP?

http://stackoverflow.com/questions/1502244/how-can-i-use-c-code-to-interact-with-php

code has to sometimes Do the heavy lifting what is the api in C to do this Or whats the best way I havent the slightest..

How to detect win32 process creation/termination in c++

http://stackoverflow.com/questions/3556048/how-to-detect-win32-process-creation-termination-in-c

without creating a NT kernel mode driver only using win32 api functions using c Not using the basic solution of a infinite.. system wide callback asynchronous events ... Thanks c winapi process share improve this question The only thing I could..

Most complete c++ facebook library

http://stackoverflow.com/questions/5290241/most-complete-c-facebook-library

Found so far 1 C Facebook REST Client 2 facebook cpp graph api c facebook share improve this question From my perspective.. ones you need as you go. Though I recommend this Facebook api facebook graph api by meir yanovich share improve this answer..

C++ SMTP Example

http://stackoverflow.com/questions/58210/c-smtp-example

one have a simple C example for sending e mail using smtp api c smtp share improve this question #include iostream #include..

C++ - How to set file permissions (cross platform)

http://stackoverflow.com/questions/592448/c-how-to-set-file-permissions-cross-platform

code to work on windows as well. I can use some windows api but what is the best c cross platform way to do this c windows..

Linux API to list running processes?

http://stackoverflow.com/questions/939778/linux-api-to-list-running-processes

directly. Can anyone think of a way to do this c c linux api process share improve this question http procps.sourceforge.net..

Check at Compile-Time if Template Argument is void

http://stackoverflow.com/questions/9625526/check-at-compile-time-if-template-argument-is-void

typename TRet typename... TArgs TRet Wrap TRet WINAPI api TArgs... TArgs... args TRet ret api args... check for errors.. TRet Wrap TRet WINAPI api TArgs... TArgs... args TRet ret api args... check for errors return ret Using this I can have code.. function it looks as follows void Wrap void WINAPI api void ret api ahem Can't declare a variable of type void... check..

How to access the Java method in a C++ application

http://stackoverflow.com/questions/992836/how-to-access-the-java-method-in-a-c-application

works in a reflective non type safe way example uses the C api which is a little cleaner than the C version . In this case..