File: support.h

package info (click to toggle)
screem 0.2.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,748 kB
  • ctags: 2,270
  • sloc: ansic: 26,366; sh: 7,453; makefile: 512; sed: 93; perl: 18
file content (20 lines) | stat: -rw-r--r-- 399 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef SUPPORT_H
#define SUPPORT_H

void change_state( GtkWidget *widget, gpointer data );
gchar* file_select( gchar *title );
gboolean execute_command( gchar *command );
gchar* escape_path( gchar *pathname );

typedef struct _Icons {
	const gchar *mime_type;
	GdkImlibImage *image;
	GdkPixmap *open;
	GdkPixmap *open_mask;

} Icons;

Icons *icon_from_mime_type( const gchar *mime_type );


#endif