gnome-control-center/capplets/mime-type/mime-data.h
Jonathan Blandford c52b676034 more work. also minor fix in gnome-edit-properties. off to go see cruel
more work.
also minor fix in gnome-edit-properties.
off to go see cruel intentions.
1999-03-13 00:53:31 +00:00

24 lines
544 B
C

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
/* Copyright (C) 1998 Redhat Software Inc.
* Authors: Jonathan Blandford <jrb@redhat.com>
*/
#ifndef _MIME_DATA_H_
#define _MIME_DATA_H_
#include "gnome.h"
#include <regex.h>
/* Typedefs */
typedef struct {
char *mime_type;
regex_t *regex[2];
GList *ext[2];
char *ext_readable[2];
char *regex_readable[2];
char *file_name;
GList *keys;
} MimeInfo;
GtkWidget *get_mime_clist ();
void init_mime_type ();
#endif