Files
test2/intern/ghost/test/multitest/WindowData.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
411 B
C
Raw Normal View History

/* 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);