Blender V4.3
WindowData.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5typedef void (*WindowDataHandler)(void *priv, GHOST_EventHandle evt);
6typedef struct _WindowData WindowData;
7
8/***/
9
11void windowdata_handle(WindowData *wb, GHOST_EventHandle evt);
void windowdata_free(WindowData *wb)
Definition WindowData.c:32
WindowData * windowdata_new(void *data, WindowDataHandler handler)
Definition WindowData.c:18
void windowdata_handle(WindowData *wb, GHOST_EventHandle evt)
Definition WindowData.c:27
void(* WindowDataHandler)(void *priv, GHOST_EventHandle evt)
Definition WindowData.h:5
WindowDataHandler handler
Definition WindowData.c:15