~ubuntu-branches/ubuntu/trusty/libsdl2/trusty-proposed

« back to all changes in this revision

Viewing changes to src/video/bwindow/SDL_bwindow.cc

  • Committer: Package Import Robot
  • Author(s): Manuel A. Fernandez Montecelo
  • Date: 2013-12-28 12:31:19 UTC
  • mto: (7.1.3 sid)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: package-import@ubuntu.com-20131228123119-wehupm72qsjvh6vz
Tags: upstream-2.0.1+dfsg1
ImportĀ upstreamĀ versionĀ 2.0.1+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
extern "C" {
32
32
#endif
33
33
 
34
 
static inline SDL_BWin *_ToBeWin(SDL_Window *window) {
 
34
static SDL_INLINE SDL_BWin *_ToBeWin(SDL_Window *window) {
35
35
        return ((SDL_BWin*)(window->driverdata));
36
36
}
37
37
 
38
 
static inline SDL_BApp *_GetBeApp() {
 
38
static SDL_INLINE SDL_BApp *_GetBeApp() {
39
39
        return ((SDL_BApp*)be_app);
40
40
}
41
41