I get a “SDL_Rect redefinition different basic types” error here is my stubbed out code
#include <iostream>
#include <SDL.h>
using namespace std;
typedef struct {
Sint16 x, y;
Uint16 w, h;
}SDL_Rect;
int main()
{
SDL_Rect rect;
rect.x = 279;
rect.y = 438;
rect.w = 82;
rect.y = 42;
return 0;
}