mirror of
https://github.com/arnavbhatt288/sdl-2.30.3-kolibri.git
synced 2025-01-18 01:39:27 +01:00
trivial changes
Signed-off-by: Arnav Bhatt <arnav@ghativega.in>
This commit is contained in:
parent
dd949a36ee
commit
872e26a649
@ -92,7 +92,7 @@
|
|||||||
/* Enable the dummy thread support (src/thread/dummy/\*.c) */
|
/* Enable the dummy thread support (src/thread/dummy/\*.c) */
|
||||||
#define SDL_THREADS_DISABLED 1
|
#define SDL_THREADS_DISABLED 1
|
||||||
|
|
||||||
/* Enable the Kolibri timer support (src/timer/dummy/\*.c) */
|
/* Enable the Kolibri timer support (src/timer/kolibri/\*.c) */
|
||||||
#define SDL_TIMER_KOLIBRI 1
|
#define SDL_TIMER_KOLIBRI 1
|
||||||
|
|
||||||
/* Enable the Kolibri video driver (src/video/kolibri/\*.c) */
|
/* Enable the Kolibri video driver (src/video/kolibri/\*.c) */
|
||||||
|
@ -236,4 +236,4 @@ AudioBootStrap KOLIBRIAUDIO_bootstrap = {
|
|||||||
KOLIBRIAUDIO_Init, SDL_FALSE
|
KOLIBRIAUDIO_Init, SDL_FALSE
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_AUDIO_DRIVER_KOLIBRI */
|
||||||
|
@ -52,4 +52,4 @@ char *SDL_GetPrefPath(const char *org, const char *app)
|
|||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_FILESYSTEM_KOLIBRI */
|
||||||
|
@ -51,4 +51,4 @@ void SDL_Delay(Uint32 ms)
|
|||||||
_ksys_delay((uint32_t)(ms / 10 + (ms % 10 > 0)));
|
_ksys_delay((uint32_t)(ms / 10 + (ms % 10 > 0)));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_TIMER_KOLIBRI */
|
||||||
|
@ -57,4 +57,4 @@ SDL_bool KOLIBRI_HasClipboardText(_THIS)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_VIDEO_DRIVER_KOLIBRI */
|
||||||
|
@ -8,4 +8,4 @@ extern char *KOLIBRI_GetClipboardText(_THIS);
|
|||||||
extern int KOLIBRI_SetClipboardText(_THIS, const char *text);
|
extern int KOLIBRI_SetClipboardText(_THIS, const char *text);
|
||||||
extern SDL_bool KOLIBRI_HasClipboardText(_THIS);
|
extern SDL_bool KOLIBRI_HasClipboardText(_THIS);
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_kolibriclipboard_h_ */
|
||||||
|
@ -354,4 +354,4 @@ void KOLIBRI_PumpEvents(_THIS)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_VIDEO_DRIVER_KOLIBRI */
|
||||||
|
@ -7,4 +7,4 @@
|
|||||||
extern void KOLIBRI_InitOSKeymap(void);
|
extern void KOLIBRI_InitOSKeymap(void);
|
||||||
extern void KOLIBRI_PumpEvents(_THIS);
|
extern void KOLIBRI_PumpEvents(_THIS);
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_kolibrievents_h_ */
|
||||||
|
@ -76,4 +76,4 @@ void KOLIBRI_DestroyWindowFramebuffer(_THIS, SDL_Window *window)
|
|||||||
data->surface = NULL;
|
data->surface = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_VIDEO_DRIVER_KOLIBRI */
|
||||||
|
@ -8,4 +8,4 @@ extern int KOLIBRI_CreateWindowFramebuffer(_THIS, SDL_Window *window, Uint32 *fo
|
|||||||
extern int KOLIBRI_UpdateWindowFramebuffer(_THIS, SDL_Window *window, const SDL_Rect *rects, int numrects);
|
extern int KOLIBRI_UpdateWindowFramebuffer(_THIS, SDL_Window *window, const SDL_Rect *rects, int numrects);
|
||||||
extern void KOLIBRI_DestroyWindowFramebuffer(_THIS, SDL_Window *window);
|
extern void KOLIBRI_DestroyWindowFramebuffer(_THIS, SDL_Window *window);
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_kolibriframebuffer_h_ */
|
||||||
|
@ -138,4 +138,4 @@ void KOLIBRI_InitMouse(void)
|
|||||||
SDL_SetDefaultCursor(KOLIBRI_CreateDefaultCursor());
|
SDL_SetDefaultCursor(KOLIBRI_CreateDefaultCursor());
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_VIDEO_DRIVER_KOLIBRI */
|
||||||
|
@ -13,4 +13,4 @@ typedef struct _KOLIBRI_CursorData
|
|||||||
|
|
||||||
extern void KOLIBRI_InitMouse(void);
|
extern void KOLIBRI_InitMouse(void);
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_kolibrimouse_h_ */
|
||||||
|
@ -115,4 +115,4 @@ VideoBootStrap KOLIBRI_bootstrap = {
|
|||||||
NULL /* no ShowMessageBox implementation */
|
NULL /* no ShowMessageBox implementation */
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_VIDEO_DRIVER_KOLIBRI */
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
|
|
||||||
#ifndef SDL_kolibrivideo_h
|
#ifndef SDL_kolibrivideo_h_
|
||||||
#define SDL_kolibrivideo_h
|
#define SDL_kolibrivideo_h_
|
||||||
|
|
||||||
typedef struct SDL_VideoData
|
typedef struct SDL_VideoData
|
||||||
{
|
{
|
||||||
Uint32 window_id;
|
Uint32 window_id;
|
||||||
} SDL_VideoData;
|
} SDL_VideoData;
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_kolibrivideo_h_ */
|
||||||
|
@ -86,4 +86,4 @@ void KOLIBRI_DestroyWindow(_THIS, SDL_Window *window)
|
|||||||
SDL_free(window->driverdata);
|
SDL_free(window->driverdata);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_VIDEO_DRIVER_KOLIBRI */
|
||||||
|
@ -15,4 +15,4 @@ extern void KOLIBRI_RepaintWnd(_THIS);
|
|||||||
extern void KOLIBRI_SetWindowTitle(_THIS, SDL_Window *window);
|
extern void KOLIBRI_SetWindowTitle(_THIS, SDL_Window *window);
|
||||||
extern void KOLIBRI_DestroyWindow(_THIS, SDL_Window *window);
|
extern void KOLIBRI_DestroyWindow(_THIS, SDL_Window *window);
|
||||||
|
|
||||||
#endif
|
#endif /* SDL_kolibriwindow_h_ */
|
||||||
|
Loading…
Reference in New Issue
Block a user