2023-06-14 17:39:46 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
|
typedef void (*WindowDataHandler)(void *priv, GHOST_EventHandle evt);
|
|
|
|
|
typedef struct _WindowData WindowData;
|
2018-06-04 18:47:57 +02:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/***/
|
2018-06-04 18:47:57 +02:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
WindowData *windowdata_new(void *data, WindowDataHandler handler);
|
|
|
|
|
void windowdata_handle(WindowData *wb, GHOST_EventHandle evt);
|
|
|
|
|
void windowdata_free(WindowData *wb);
|