gtk/gdk/gdkdragsurfaceprivate.h
Matthias Clasen b25be8a42f Add a GdkDragSurface interface
This will provide functionality specific to drag icons.
2020-03-12 14:56:21 -04:00

21 lines
396 B
C

#ifndef __GDK_DRAG_SURFACE_PRIVATE_H__
#define __GDK_DRAG_SURFACE_PRIVATE_H__
#include "gdkdragsurface.h"
G_BEGIN_DECLS
struct _GdkDragSurfaceInterface
{
GTypeInterface g_iface;
gboolean (* present) (GdkDragSurface *drag_surface,
int width,
int height);
};
G_END_DECLS
#endif /* __GDK_DRAG_SURFACE_PRIVATE_H__ */