mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
a1c5a806b3
The conversion was done by guard2one.
23 lines
462 B
C
23 lines
462 B
C
#pragma once
|
|
|
|
#include "gdkdragsurface.h"
|
|
#include "gdkdragsurfacesize.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
struct _GdkDragSurfaceInterface
|
|
{
|
|
GTypeInterface g_iface;
|
|
|
|
gboolean (* present) (GdkDragSurface *drag_surface,
|
|
int width,
|
|
int height);
|
|
};
|
|
|
|
void gdk_drag_surface_notify_compute_size (GdkDragSurface *surface,
|
|
GdkDragSurfaceSize *size);
|
|
|
|
G_END_DECLS
|
|
|