ref: 21ab35634fd09c814adeefb38fee209486778df0
dir: /src/rt_swift.c/
/* Copyright (C) 1994-1995 Apogee Software, Ltd. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ //**************************************************************************** // // RT_SWIFT.C // // SWIFT services module - for CYBERMAN use in ROTT. // //**************************************************************************** #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "rt_def.h" #include "rt_swift.h" #include "_rt_swft.h" //MED #include "memcheck.h" /* This isn't of much use in Linux. */ int SWIFT_Initialize (void) { STUB_FUNCTION; return 0; } void SWIFT_Terminate (void) { STUB_FUNCTION; } void SWIFT_Get3DStatus (SWIFT_3DStatus far *pstat) { STUB_FUNCTION; } void SWIFT_TactileFeedback (int d, int on, int off) { STUB_FUNCTION; } unsigned SWIFT_GetDynamicDeviceData (void) { STUB_FUNCTION; return 0; }