2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
* Copyright 2001-2002 NaN Holding BV. All rights reserved. */
|
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);
|