예제 #1
0
파일: xdgmimecache.c 프로젝트: cmotc/medit
const char *
_xdg_mime_cache_get_icon (const char *mime)
{
  const char *icon;

  icon = cache_lookup_icon (mime, 32);

  if (icon == NULL)
    icon = _xdg_mime_cache_get_generic_icon (mime);

  return icon;
}
예제 #2
0
const char *
_xdg_mime_cache_get_icon (const char *mime)
{
  return cache_lookup_icon (mime, 32);
}
예제 #3
0
const char *
_xdg_mime_cache_get_generic_icon (const char *mime)
{
  return cache_lookup_icon (mime, 36);
}