c
wully_happy
laxp
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c连接mysql数据库
#includestring.h>#includemysql/mysql.h>int main()...{ MYSQL *mysql; mysql = mysql_init(NULL); if(!mysql) ...{ printf(mysql_error(mysql)); return -1; } mysql = mysql_r原创 2008-03-06 17:00:00 · 561 阅读 · 0 评论 -
C++中的预定义宏
C/C++宏大全(转载,原贴地址http://www.cnblogs.com/sevencat/archive/2004/06/10/14872.html)一、标准预定义宏The standard predefined macros are specified by the relevant language standards, so they are available with a转载 2008-09-10 09:15:00 · 839 阅读 · 0 评论 -
ubuntu安装gtk
sudo apt-get install build-essential #这将安装gcc/g++/gdb/make 等基本编程工具sudo apt-get install gnome-core-devel #这将安装 libgtk2.0-dev libglib2.0-dev 等开发相关的库文件sudo apt-get install pkg-config #用于在编译GTK程序时自动找出原创 2008-10-17 18:38:00 · 812 阅读 · 0 评论 -
GTK入门
1. 简介GTK (GIMP Toolkit) 起源於开发用来做为GIMP (GeneralImage Manipulation Program)的一套工具. GTK建立在GDK (GIMP Drawing Kit)的上层,基本上是将Xlib功能包装起来. 它被称为GIMP toolkit是因为原来是写来开发GIMP, 但现在被许多免费软体计划所使用. 原作者为 Peter Mat转载 2008-10-21 15:47:00 · 1088 阅读 · 0 评论
分享