~brandontschaefer/libsdl/forward-declare-1306629-fix

« back to all changes in this revision

Viewing changes to include/SDL_syswm.h

  • Committer: Brandon Schaefer
  • Date: 2014-04-21 21:52:03 UTC
  • Revision ID: brandontschaefer@gmail.com-20140421215203-g5iizks8krze5dz8
* Apply the patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
#endif
94
94
#endif
95
95
 
96
 
#if defined(SDL_VIDEO_DRIVER_MIR)
97
 
#include <mir_toolkit/mir_client_library.h>
98
 
#endif
99
 
 
100
 
 
101
96
/**
102
97
 *  These are the various supported windowing subsystems
103
98
 */
213
208
#if defined(SDL_VIDEO_DRIVER_MIR)
214
209
        struct
215
210
        {
216
 
            MirConnection *connection;  /**< Mir display server connection */
217
 
            MirSurface *surface;  /**< Mir surface */
 
211
            struct MirConnection *connection;  /**< Mir display server connection */
 
212
            struct MirSurface *surface;  /**< Mir surface */
218
213
        } mir;
219
214
#endif
220
215