A
download gitkrinfo.c
Language: C
LOC: 16
Project Info
GITK - Generalized Interface Toolkit(gitk)
Server: SourceForge
Type: cvs
...k\gitk\gitk‑renderer‑phone\
   autogen.sh
   config.h.in
   configure.in
   gitkr-phoneConf.sh.in
   gitkrdefines.h
   gitkrdone.c
   gitkrdone.h
   gitkreventloop.c
   gitkreventloop.h
   gitkrglobal.c
   gitkrglobal.h
   gitkrhideshow.c
   gitkrhideshow.h
   gitkrincludes.h
   gitkrinfo.c
   gitkrinfo.h
   gitkrinit.c
   gitkrinit.h
   gitkrlayout.c
   gitkrlayout.h
   gitkrrenderer.c
   gitkrrenderer.h
   gitkrtools.c
   gitkrtools.h
   Makefile.am

/** $Id: gitkrinfo.c,v 1.6 2004/09/07 17:46:55 ensonic Exp $
 *
 * @file   gitk-renderer-phone/gitkrinfo.c
 * @author Steffen Ast <sast@users.sf.net>
 * @date   Thu Oct 23 13:21:02 2003
 * 
 * @brief  gitk renderer info routine
 * @ingroup gitkrendererphone
 * 
 */

#define GITK_RENDERER_C
#define GITKR_INFO_C

#include "gitkrincludes.h"

/** @brief return information about the renderer
 * @param key what information to return
 * @return the requested information
 * @ingroup gitkrendererphone
 */
gchar *gitkr_info(guint key) {
	switch(key) {
		case GITKR_INFO_LOCALEDIR:
			return(LOCALEDIR);
		case GITKR_INFO_PACKAGE:
			return(PACKAGE);
		case GITKR_INFO_MEDIA_DOMAIN:
			return("audio");
		case GITKR_INFO_INTERFACE_LOCATION:
			return(GITKR_INFO_INTERFACE_LOCATION_REMOTE);
	}
	return(NULL);
}

About Koders | Resources | Downloads | Support | Black Duck | Terms of Service | DMCA | Privacy Policy | Contact Us