1 |
|
/* |
2 |
|
* clip_dummy.cpp - Clipboard handling, dummy implementation |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-1999 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2008 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
21 |
|
#include "sysdeps.h" |
22 |
|
|
23 |
|
#include "clip.h" |
24 |
+ |
#include "macos_util.h" |
25 |
|
|
26 |
|
#define DEBUG 0 |
27 |
|
#include "debug.h" |
46 |
|
|
47 |
|
|
48 |
|
/* |
49 |
+ |
* Mac application reads clipboard |
50 |
+ |
*/ |
51 |
+ |
|
52 |
+ |
void GetScrap(void **handle, uint32 type, int32 offset) |
53 |
+ |
{ |
54 |
+ |
D(bug("GetScrap handle %p, type %08x, offset %d\n", handle, type, offset)); |
55 |
+ |
} |
56 |
+ |
|
57 |
+ |
|
58 |
+ |
/* |
59 |
|
* Mac application wrote to clipboard |
60 |
|
*/ |
61 |
|
|
66 |
|
return; |
67 |
|
|
68 |
|
switch (type) { |
69 |
< |
case 'TEXT': |
69 |
> |
case FOURCC('T','E','X','T'): |
70 |
|
D(bug(" clipping TEXT\n")); |
71 |
|
break; |
72 |
|
} |