1 |
|
/* |
2 |
|
* clip_windows.cpp - Clipboard handling, Windows implementation |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2005 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 |
93 |
|
static void do_putscrap(uint32 type, void *scrap, int32 length); |
94 |
|
static void do_getscrap(void **handle, uint32 type, int32 offset); |
95 |
|
|
96 |
< |
// The main window handle |
97 |
< |
#ifdef USE_SDL_VIDEO |
98 |
< |
#include <SDL_syswm.h> |
99 |
< |
static HWND GetMainWindowHandle(void) |
100 |
< |
{ |
101 |
< |
SDL_SysWMinfo wmInfo; |
102 |
< |
wmInfo.version.major = SDL_MAJOR_VERSION; |
103 |
< |
wmInfo.version.minor = SDL_MINOR_VERSION; |
104 |
< |
wmInfo.version.patch = SDL_PATCHLEVEL; |
105 |
< |
return SDL_GetWMInfo(&wmInfo) ? wmInfo.window : NULL; |
106 |
< |
} |
107 |
< |
#endif |
96 |
> |
// From main_windows.cpp |
97 |
> |
extern HWND GetMainWindowHandle(void); |
98 |
|
|
99 |
|
|
100 |
|
/* |