mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Beginnings of support for selecting text -- clicking mostly does the right
thing, but dragging doesn't work at all. [originally from svn r81]
This commit is contained in:
12
mac.c
12
mac.c
@ -1,4 +1,4 @@
|
||||
/* $Id: mac.c,v 1.1.2.12 1999/03/07 23:20:20 ben Exp $ */
|
||||
/* $Id: mac.c,v 1.1.2.13 1999/03/09 00:09:50 ben Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1999 Ben Harris
|
||||
* All rights reserved.
|
||||
@ -359,6 +359,16 @@ static void mac_adjustcursor(void) {
|
||||
SetCursor(&qd.arrow);
|
||||
}
|
||||
|
||||
void write_clip(void *data, int len) {
|
||||
|
||||
/* XXX: do something */
|
||||
}
|
||||
|
||||
void get_clip(void **p, int *lenp) {
|
||||
|
||||
/* XXX: do something */
|
||||
}
|
||||
|
||||
static void mac_shutdown(void) {
|
||||
|
||||
exit(0);
|
||||
|
Reference in New Issue
Block a user