~ubuntu-branches/ubuntu/feisty/basilisk2/feisty

« back to all changes in this revision

Viewing changes to src/Windows/clip_windows.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2006-06-01 01:11:16 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060601011116-xjhegbgyfsxag5fl
Tags: 0.9.20060529-1
* New upstream CVS snapshot.
* Update local cdbs snippet copyright-check.mk:
  + Broaden scan to also look for "(c)" by default.
  + Make egrep options configurable.
  + Ignore auto-tools files.
* Bump up standards-version to 3.7.2 (no changes needed).
* Let dh_strip do the stripping (not the make install target).

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
static void do_putscrap(uint32 type, void *scrap, int32 length);
94
94
static void do_getscrap(void **handle, uint32 type, int32 offset);
95
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);
108
98
 
109
99
 
110
100
/*