Dillo v3.1.1-119-g140d9ebd
Loading...
Searching...
No Matches
actions.h
Go to the documentation of this file.
1/*
2 * File: actions.h
3 *
4 * Copyright (C) 2024 Rodrigo Arias Mallo <rodarima@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 */
11
12#ifndef ACTIONS_H
13#define ACTIONS_H
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
19#include "dlib/dlib.h"
20
21typedef struct {
22 char *label;
23 char *cmd;
24} Action;
25
26void a_Actions_init(void);
28
29#ifdef __cplusplus
30}
31#endif /* __cplusplus */
32#endif /* ACTIONS_H*/
Dlist * a_Actions_link_get(void)
Definition actions.c:62
void a_Actions_init(void)
Definition actions.c:48
char * cmd
Definition actions.h:23
char * label
Definition actions.h:22
Definition dlib.h:131