/* ______ ___ ___ * /\ _ \ /\_ \ /\_ \ * \ \ \L\ \\//\ \ \//\ \ __ __ _ __ ___ * \ \ __ \ \ \ \ \ \ \ /'__`\ /'_ `\/\`'__\/ __`\ * \ \ \/\ \ \_\ \_ \_\ \_/\ __//\ \L\ \ \ \//\ \L\ \ * \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/ * \/_/\/_/\/____/\/____/\/____/\/___L\ \/_/ \/___/ * /\____/ * \_/__/ * * Joystick driver for BeOS. * * By Angelo Mottola. * * See readme.txt for copyright information. */ #include "allegro.h" #include "allegro/internal/aintern.h" #include "allegro/platform/aintbeos.h" #ifndef ALLEGRO_BEOS #error something is wrong with the makefile #endif JOYSTICK_DRIVER joystick_beos = { JOYSTICK_BEOS, // int id; empty_string, // AL_CONST char *name; empty_string, // AL_CONST char *desc; "BeOS joystick", // AL_CONST char *ascii_name; be_joy_init, // AL_METHOD(int, init, (void)); be_joy_exit, // AL_METHOD(void, exit, (void)); be_joy_poll, // AL_METHOD(int, poll, (void)); NULL, // AL_METHOD(int, save_data, (void)); NULL, // AL_METHOD(int, load_data, (void)); NULL, // AL_METHOD(AL_CONST char *, calibrate_name, (int n)); NULL // AL_METHOD(int, calibrate, (int n)); };