tint2/src/launcher/apps-common.h

31 lines
914 B
C
Raw Normal View History

/**************************************************************************
* Copyright (C) 2015 (mrovi9000@gmail.com)
*
*
**************************************************************************/
#ifndef APPS_COMMON_H
#define APPS_COMMON_H
typedef struct DesktopEntry {
char *name;
char *exec;
char *icon;
2015-07-04 15:33:19 +00:00
char *path;
} DesktopEntry;
// Parses a line of the form "key = value". Modifies the line.
// Returns 1 if successful, and parts are not empty.
// Key and value point to the parts.
int parse_dektop_line(char *line, char **key, char **value);
// Reads the .desktop file from the given path into the DesktopEntry entry.
// The DesktopEntry object must be initially empty.
// Returns 1 if successful.
int read_desktop_file(const char *path, DesktopEntry *entry);
// Empties DesktopEntry: releases the memory of the *members* of entry.
void free_desktop_entry(DesktopEntry *entry);
#endif