Primera página Regresar Continuar Última página Imagen
Annotations
/**
* g_str_hash()- hashes a string
*
* @str: string to be hashed
*
* Performance: very fast; proportional to the
* length of the string.
*/
int g_str_hash (char *str);
/**
* load_icon() - loads an icon
*
* @name: icon name according to the freedesktop icon spec
*
* Performance: unpredictable; could take
* from tenths of a second to full seconds.
*/
GdkPixbuf *load_icon (char *name);