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
|
||
|
|