summaryrefslogtreecommitdiffstats
path: root/include/dialogs/dmenuscriptshared.h
blob: 31e8aae52a290b282baa231b15585d96bcfdf623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef ROFI_DIALOGS_DMENU_SCRIPT_SHARED_H
#define ROFI_DIALOGS_DMENU_SCRIPT_SHARED_H

typedef struct {
    /** Entry content. (visible part) */
    char     *entry;
    /** Icon name to display. */
    char     *icon_name;
    /** Async icon fetch handler. */
    uint32_t icon_fetch_uid;
    /** Hidden meta keywords. */
    char     *meta;
} DmenuScriptEntry;
/**
 * @param sw Unused
 * @param entry The entry to update.
 * @param buffer The buffer to parse.
 * @param length The buffer length.
 *
 * Updates entry with the parsed values from buffer.
 */
void dmenuscript_parse_entry_extras ( G_GNUC_UNUSED Mode *sw, DmenuScriptEntry *entry, char *buffer, size_t length );
#endif // ROFI_DIALOGS_DMENU_SCRIPT_SHARED_H