00001
00002
00003
00004
00005 #include <stdlib.h>
00006 #include <stdio.h>
00007 #include <errno.h>
00008 #include <ctype.h>
00009 #include <time.h>
00010
00011 #include "tape.h"
00012 #include "odbc.h"
00013
00014
00015
00016
00017 int odbc_open_player(struct player *my, char *fname, char *flags)
00018 {
00019 return 0;
00020 }
00021
00022 char *odbc_read_player(struct player *my,char *buffer,unsigned int size)
00023 {
00024 return NULL;
00025 }
00026
00027 int odbc_rewind_player(struct player *my)
00028 {
00029 return 0;
00030 }
00031
00032 void odbc_close_player(struct player *my)
00033 {
00034 }
00035
00036
00037
00038
00039 int odbc_open_shaper(struct shaper *my, char *fname, char *flags)
00040 {
00041 return 0;
00042 }
00043
00044 char *odbc_read_shaper(struct shaper *my,char *buffer,unsigned int size)
00045 {
00046 return NULL;
00047 }
00048
00049 int odbc_rewind_shaper(struct shaper *my)
00050 {
00051 return 0;
00052 }
00053
00054 void odbc_close_shaper(struct shaper *my)
00055 {
00056 }
00057
00058
00059
00060
00061 int odbc_open_recorder(struct recorder *my, char *fname, char *flags)
00062 {
00063 return 0;
00064 }
00065
00066 int odbc_write_recorder(struct recorder *my, char *timestamp, char *value)
00067 {
00068 return 0;
00069 }
00070
00071 void odbc_close_recorder(struct recorder *my)
00072 {
00073 }
00074
00075
00076
00077
00078 int odbc_open_collector(struct collector *my, char *fname, char *flags)
00079 {
00080 return 0;
00081 }
00082
00083 int odbc_write_collector(struct collector *my, char *timestamp, char *value)
00084 {
00085 return 0;
00086 }
00087
00088 void odbc_close_collector(struct collector *my)
00089 {
00090 }