diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-05 04:46:39 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-05 04:46:39 (GMT) |
commit | c21d43b1a96fda8597f9838f90c33efdd6447a7f (patch) | |
tree | 4b1b6848a2a8f1b3f66d319e784c6d08ddc042ab /macosx/tkMacOSXXStubs.c | |
parent | 3f0541ae5dbacb552186ca434da000dc3947c731 (diff) | |
parent | 4d934afdaa794c2cb190a8f1b5712069e12b9750 (diff) | |
download | tk-c21d43b1a96fda8597f9838f90c33efdd6447a7f.zip tk-c21d43b1a96fda8597f9838f90c33efdd6447a7f.tar.gz tk-c21d43b1a96fda8597f9838f90c33efdd6447a7f.tar.bz2 |
Change XSetDashes signature and many others to match Xorg, needed for Cygwin
Diffstat (limited to 'macosx/tkMacOSXXStubs.c')
-rw-r--r-- | macosx/tkMacOSXXStubs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/macosx/tkMacOSXXStubs.c b/macosx/tkMacOSXXStubs.c index a09501b..6788bfd 100644 --- a/macosx/tkMacOSXXStubs.c +++ b/macosx/tkMacOSXXStubs.c @@ -469,12 +469,13 @@ XSelectInput( Debugger(); } -void +int XBell( Display* display, int percent) { SysBeep(percent); + return Success; } #if 0 @@ -554,7 +555,7 @@ XDrawPoints( } */ -void +int XWarpPointer( Display* display, Window src_w, @@ -566,6 +567,7 @@ XWarpPointer( int dest_x, int dest_y) { + return Success; } void |