gtk2/gdk/nanox/gdkcursor-nanox.c
Paolo Molaro 8a836c07cf Sat, 6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>
Sat,  6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>

	* gdk/nanox/*: nano-X port work in progress.
	* gdk/simple.c: simple test for Gdk.
	* README.nanox: notes about the port: read this first!
	* gtk/gtk{dnd,plug,selection,window}.c: minimal changes to make gtk compile
	with nano-X.
2000-05-06 11:57:31 +00:00

27 lines
453 B
C

#include "gdk.h"
#include "gdkprivate-nanox.h"
GdkCursor*
gdk_cursor_new (GdkCursorType cursor_type) {
g_message("unimplemented %s", __FUNCTION__);
return NULL;
}
GdkCursor*
gdk_cursor_new_from_pixmap (GdkPixmap *source,
GdkPixmap *mask,
GdkColor *fg,
GdkColor *bg,
gint x,
gint y)
{
g_message("unimplemented %s", __FUNCTION__);
return NULL;
}
void
_gdk_cursor_destroy (GdkCursor *cursor)
{
}