15 lines
218 B
C++
15 lines
218 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
|
|
namespace zxscreen
|
|
{
|
|
void init();
|
|
void reinit();
|
|
void refresh(const uint8_t dt);
|
|
void redraw();
|
|
|
|
void incZoom();
|
|
void decZoom();
|
|
void toggleFullscreen();
|
|
}
|