[1.2]-Can I Read Keyboard Input Without Cre ating An SDL Screen?

What we are doing here in that situation is to create a null-sized window the
following way:

SDL_CreateRGBSurface(0,0,0,0,0,0,0,0);

( SDL_CreateWindow(“SDL”,0,0,0,0,0) for SDL 1.3 )

Cl?ment Forest