view test/common.h @ 3380:6f381d0d6394

stefanullinger to me I updated and wanted to compile SDL, but it does not work. The reason is the new pre-build step. Currently it says: "if exist $(SolutionDir)\..\include\SDL_config.h goto SDLCONFIGOKAY echo Copying SDL_config_win32.h to SDL_config.h... copy $(SolutionDir)\..\include\SDL_config_win32.h $(SolutionDir)\..\include\SDL_config.h :SDLCONFIGOKAY if exist $(SolutionDir)\..\include\SDL_revision.h goto SDLREVISIONOKAY echo Creating stub SDL_revision.h file... echo #define SDL_REVISION 0 >$(SolutionDir)\..\include\SDL_revision.h :SDLREVISIONOKAY" So ... the problem with this lines is, that they lookup the SolutionDir... I think it should use the ProjectDir here! I - for example - want to use SDL within my engine... So my engine is the solutionDir...not SDL...SDL is just a sub-project. I think you should change this, shouldn't you?! Regards, Stefan
author Sam Lantinga <slouken@libsdl.org>
date Sun, 11 Oct 2009 10:22:22 +0000
parents c18c03927a77
children 55541ddf13e3
line wrap: on
line source


/* A simple test program framework */

#include "SDL.h"

#define DEFAULT_WINDOW_WIDTH  640
#define DEFAULT_WINDOW_HEIGHT 480

#define VERBOSE_VIDEO   0x00000001
#define VERBOSE_MODES   0x00000002
#define VERBOSE_RENDER  0x00000004
#define VERBOSE_EVENT   0x00000008
#define VERBOSE_AUDIO   0x00000010

typedef struct
{
    /* SDL init flags */
    char **argv;
    Uint32 flags;
    Uint32 verbose;

    /* Video info */
    const char *videodriver;
    int display;
    const char *window_title;
    Uint32 window_flags;
    int window_x;
    int window_y;
    int window_w;
    int window_h;
    int depth;
    int refresh_rate;
    int num_windows;
    SDL_WindowID *windows;

    /* Renderer info */
    const char *renderdriver;
    Uint32 render_flags;
    SDL_bool skip_renderer;

    /* Audio info */
    const char *audiodriver;
    SDL_AudioSpec audiospec;
} CommonState;

extern CommonState *CommonCreateState(char **argv, Uint32 flags);
extern int CommonArg(CommonState * state, int index);
extern const char *CommonUsage(CommonState * state);
extern SDL_bool CommonInit(CommonState * state);
extern void CommonEvent(CommonState * state, SDL_Event * event, int *done);
extern void CommonQuit(CommonState * state);