00001
00002
00003
00004 #include "FTables.h"
00005
00006 extern void haltscicos(ARGS_fbutn);
00007 void C2F(fbutn)(ARGS_fbutn);
00008 void C2F(setfbutn)(char *name, int *rep);
00009
00010 FTAB FTab_fbutn[] =
00011 {
00012 {"haltscicos", (voidf) haltscicos},
00013 {(char *) 0, (voidf) 0}
00014 };
00015
00016
00017
00018
00019
00020
00021 #define ARGS_fbutn char *,integer*,integer*
00022 typedef integer * (*fbutnf)(ARGS_fbutn);
00023
00024
00025
00026
00027
00028
00029
00032 static fbutnf fbutnfonc ;
00033
00036 void C2F(fbutn)(char *name, integer *win, integer *entry)
00037 {
00038 (*fbutnfonc)(name,win,entry);
00039 }
00040
00043 void C2F(setfbutn)(char *name, int *rep)
00044 {
00045 fbutnfonc = (fbutnf) SetFunction(name,rep,FTab_fbutn);
00046 }