You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
const char* version = gdk_pixbuf_version;
|
|
const guint major = gdk_pixbuf_major_version;
|
|
const guint minor = gdk_pixbuf_minor_version;
|
|
const guint micro = gdk_pixbuf_micro_version;
|
|
return 0;
|
|
}
|