Dillo v3.2.0-143-gabad1053
Loading...
Searching...
No Matches
control.h
Go to the documentation of this file.
1/*
2 * File: control.h
3 *
4 * Copyright (C) 2025 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 IO_CONTROL_H
13#define IO_CONTROL_H
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
19#include "bw.h"
20
21int a_Control_init(void);
22int a_Control_is_waiting(void);
24int a_Control_free(void);
25
26#ifdef __cplusplus
27}
28#endif /* __cplusplus */
29
30#endif /* IO_CONTROL_H */
void a_Control_notify_finish(BrowserWindow *bw)
Definition control.c:539
int a_Control_free(void)
Definition control.c:540
int a_Control_is_waiting(void)
Definition control.c:538
int a_Control_init(void)
Definition control.c:537
Contains the specific data for a single window.
Definition bw.h:27