mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-08 15:40:28 -04:00
20 lines
362 B
C
20 lines
362 B
C
#ifndef __BMOUSE_H
|
|
#define __BMOUSE_H
|
|
|
|
#include "event.h"
|
|
#include "devices.h"
|
|
|
|
|
|
#define get_mouse(info) va_arg(info->data,MS_EVENT *)
|
|
|
|
extern MS_EVENT ms_last_event;
|
|
|
|
short init_mysky();
|
|
short done_mysky();
|
|
void ukaz_mysku();
|
|
void schovej_mysku();
|
|
void zobraz_mysku();
|
|
void set_ms_finger(int x,int y);
|
|
void update_mysky(void);
|
|
char je_myska_zobrazena();
|
|
#endif
|