background preloader

API

Facebook Twitter

Windows API Tutorial. Developer Guide - MDC. There are lots of ways to contribute to the Mozilla project: coding, testing, improving the build process and tools, or contributing to the documentation. This guide provides information that will not only help you get started as a Mozilla contributor, but that you'll find handy to refer to even as an old hand. Documentation topics Getting Started A step-by-step beginner's guide to getting involved with Mozilla.

Working with Mozilla Source Code A code overview, how to get the code, and the coding style guide. Build Instructions How to build Firefox, Thunderbird, SeaMonkey, or other Mozilla applications. Development process overview An overview of the entire Mozilla development process. Managing multiple profiles When working with prerelease versions of Firefox, it's often helpful to have multiple Firefox profiles, such as one for each channel, or for different kinds of testing. Automated Testing How to run Mozilla's automated tests, and how to write new tests. How to submit a patch Code snippets Tools. FoosYerDoos - C++ Programming. Google Code. Google Code Playground. MY SLIIT: Use Gmail to send mails in php. MySQL C API programming tutorial. This is a C programming tutorial for the MySQL database. It covers the basics of MySQL programming with the C API. You may also consider to look at the MySQL tutorial on ZetCode. About MySQL database MySQL is a leading open source database management system.

It is a multi user, multithreaded database management system. MySQL is especially popular on the web. . $ sudo apt-get install libmysqlclient-dev To be able to compile C examples, we need to install the MySQL C development libraries. This tutorial uses C99. MYSQL *con = mysql_init(NULL); In C99, we can mix declarations with code. First example Our first example will test one MySQL function call. The mysql_get_client_info() shows the MySQL client version. #include <my_global.h> #include <mysql.h> We include necessary header files. Printf("MySQL client version: %s\n", mysql_get_client_info()); This code line outputs the version of the MySQL client. Exit(0); We exit from the script. $ gcc version.c -o version `mysql_config --cflags --libs` $ . $ .

Windows API Tutorial.