#include <acknex.h>
#include <default.c>
#include <windows.h>
long WINAPI ShellExecute(long hwnd ,long lpOperation ,long lpFile ,long lpParameters ,long lpDirectory ,long nShowCmd);
TEXT* test = {
red = 0;
green = 0;
blue = 0;
font = "Arial#18b";
string = "Print from the engine!";
flags = SHOW | CENTER_X;
pos_x = 100;
pos_y = 20;
}
void print_screen(){
file_for_screen("printfile.jpg",0);
wait(-2);
ShellExecute(0,"print","printfile0.jpg","","",1);
}
void main(){
vec_set(screen_color,vector(255,255,255));
video_set(200,60,0,0);
on_space = print_screen;
}