forked from KolibriOS/kolibrios
SDL: remove mentions of menuetos in video src
git-svn-id: svn://kolibrios.org@9787 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
e9318b1780
commit
23d59ab1ad
@ -20,7 +20,7 @@ FOLDERS = {
|
|||||||
"timer/",
|
"timer/",
|
||||||
"timer/dummy/",
|
"timer/dummy/",
|
||||||
"video/",
|
"video/",
|
||||||
"video/menuetos/",
|
"video/kolibrios/",
|
||||||
"SYSCALL/src/"
|
"SYSCALL/src/"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -387,7 +387,7 @@ extern VideoBootStrap QZ_bootstrap;
|
|||||||
extern VideoBootStrap CGX_bootstrap;
|
extern VideoBootStrap CGX_bootstrap;
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_KOLIBRIOS
|
#ifdef ENABLE_KOLIBRIOS
|
||||||
extern VideoBootStrap mosvideo_bootstrab;
|
extern VideoBootStrap kos_video_bootstrab;
|
||||||
#endif
|
#endif
|
||||||
/* This is the current video device */
|
/* This is the current video device */
|
||||||
extern SDL_VideoDevice *current_video;
|
extern SDL_VideoDevice *current_video;
|
||||||
@ -396,4 +396,4 @@ extern SDL_VideoDevice *current_video;
|
|||||||
#define SDL_ShadowSurface (current_video->shadow)
|
#define SDL_ShadowSurface (current_video->shadow)
|
||||||
#define SDL_PublicSurface (current_video->visible)
|
#define SDL_PublicSurface (current_video->visible)
|
||||||
|
|
||||||
#endif /* _SDL_sysvideo_h */
|
#endif /* _SDL_sysvideo_h */
|
@ -97,7 +97,7 @@ static VideoBootStrap *bootstrap[] = {
|
|||||||
&ph_bootstrap,
|
&ph_bootstrap,
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_KOLIBRIOS
|
#ifdef ENABLE_KOLIBRIOS
|
||||||
&mosvideo_bootstrab,
|
&kos_video_bootstrab,
|
||||||
#endif
|
#endif
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include "SDL_sysevents.h"
|
#include "SDL_sysevents.h"
|
||||||
#include "SDL_sysvideo.h"
|
#include "SDL_sysvideo.h"
|
||||||
#include "SDL_events_c.h"
|
#include "SDL_events_c.h"
|
||||||
#include "SDL_menuetvideo.h"
|
#include "SDL_kolibri_video.h"
|
||||||
|
|
||||||
extern void kos_SDL_RepaintWnd(void);
|
extern void kos_SDL_RepaintWnd(void);
|
||||||
|
|
@ -7,7 +7,7 @@
|
|||||||
#include "SDL_mouse.h"
|
#include "SDL_mouse.h"
|
||||||
#include "SDL_sysvideo.h"
|
#include "SDL_sysvideo.h"
|
||||||
#include "SDL_pixels_c.h"
|
#include "SDL_pixels_c.h"
|
||||||
#include "SDL_menuetvideo.h"
|
#include "SDL_kolibri_video.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
static SDL_VideoDevice * vm_suf=NULL;
|
static SDL_VideoDevice * vm_suf=NULL;
|
||||||
@ -279,7 +279,7 @@ static SDL_VideoDevice *kos_CreateDevice(int indx)
|
|||||||
return dev;
|
return dev;
|
||||||
}
|
}
|
||||||
|
|
||||||
VideoBootStrap mosvideo_bootstrab = {
|
VideoBootStrap kos_video_bootstrab = {
|
||||||
"kolibrios", "KolibriOS Device Driver",
|
"kolibrios", "KolibriOS Device Driver",
|
||||||
kos_Available, kos_CreateDevice,
|
kos_Available, kos_CreateDevice,
|
||||||
};
|
};
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef _SDL_menuetvideo_h
|
#ifndef _SDL_kolibri_video_h
|
||||||
#define _SDL_menuetvideo_h
|
#define _SDL_kolibri_video_h
|
||||||
|
|
||||||
#include "SDL_mouse.h"
|
#include "SDL_mouse.h"
|
||||||
#include "SDL_sysvideo.h"
|
#include "SDL_sysvideo.h"
|
||||||
@ -17,4 +17,4 @@ struct SDL_PrivateVideoData {
|
|||||||
void kos_InitOSKeymap(_THIS);
|
void kos_InitOSKeymap(_THIS);
|
||||||
void kos_PumpEvents(_THIS);
|
void kos_PumpEvents(_THIS);
|
||||||
|
|
||||||
#endif
|
#endif
|
Loading…
Reference in New Issue
Block a user