Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
471 views
in Technique[技术] by (71.8m points)

c - Header file for SDL_Overlay

I plan to use both SDL_GetKeyboardState and SDL_Overlay but it seems there is a conflict.

#include <stdio.h>
#include <SDL/SDL.h>
#include <SDL2/SDL.h>

int main()
{
    const Uint8 *keystate = SDL_GetKeyboardState(NULL);
    SDL_Overlay *bmp;
    printf("hello world!");
}

Compile:

gcc -c main.cpp

When order of headers are:

#include <SDL/SDL.h>
#include <SDL2/SDL.h>

error: ‘SDL_GetKeyboardState’ was not declared in this scope
 const Uint8 *keystate = SDL_GetKeyboardState(NULL);
                                                  ^

or

#include <SDL2/SDL.h>
#include <SDL/SDL.h>

error: ‘SDL_Overlay’ was not declared in this scope
     SDL_Overlay *bmp;
     ^

Even adding

#include <SDL2/SDL_video.h>

does not solve the problem.

What header should I add to use SDL_Overlay?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...