kolibrios/programs/games/heliothryx/game/rskos.h
alpine 2815962839 Update for Heliothryx game:
- added localization tool

Updates for Marble Match-3 game:
- added localization support
- some cosmetic changes



git-svn-id: svn://kolibrios.org@5243 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-19 17:29:02 +00:00

34 lines
843 B
C

#ifndef RS_KOS_H
#define RS_KOS_H
// KolibriOS Stuff
// by Roman Shuvalov
unsigned int rskos_get_time();
void rskos_draw_area(int x, int y, int w, int h, int k_scale, unsigned char *data, unsigned char *scaled_buffer);
void rskos_resize_window(int w, int h);
void rskos_get_screen_size(unsigned int *pw, unsigned int *ph);
void rskos_exit();
// sound
#ifndef SNDBUF
#ifndef RS_KOS
#include "rs/rsaudio.h"
typedef rs_sound_t* SNDBUF;
#else
typedef unsigned int SNDBUF;
#endif
#endif
//void rskos_snd_init();
void rskos_snd_create_buffer(SNDBUF *phbuf, signed short *buffer, unsigned int length_samples);
void rskos_snd_update_buffer(SNDBUF *phbuf, signed short *buffer, unsigned int length_samples);
void rskos_snd_play(SNDBUF *phbuf, unsigned int mode);
void rskos_snd_stop(SNDBUF *phbuf);
#endif