1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-20 05:22:08 -04:00
rofi/include/modes/dmenuscriptshared.h
Dave Davenport 534aa6ad54 Rename Dialogs -> Modes
Try to fix some of old syntax.
2022-02-23 23:18:53 +01:00

35 lines
899 B
C

#ifndef ROFI_DIALOGS_DMENU_SCRIPT_SHARED_H
#define ROFI_DIALOGS_DMENU_SCRIPT_SHARED_H
#include <glib.h>
#include <mode.h>
#include <stdint.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;
/** info */
char *info;
/** non-selectable */
gboolean nonselectable;
} 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