- Added an autoamtic window calculation routine for RITA

This commit is contained in:
koennecke
2009-08-13 07:29:25 +00:00
parent cb296cb390
commit b3e425b965
7 changed files with 229 additions and 18 deletions

3
psi.c
View File

@ -56,6 +56,7 @@
#include "amorset.h"
#include "sinqhttp.h"
#include "poldizug.h"
#include "autowin.h"
/*
from tcpdornier.c
*/
@ -157,6 +158,7 @@ static void AddPsiCommands(SicsInterp * pInter)
AddCommand(pInter, "MakePoldiReiss", MakePoldiReiss, NULL, NULL);
AddCommand(pInter, "MakeSansliRebin", MakeSansliRebin, NULL, NULL);
AddCommand(pInter, "MakeLMD200", MakeLMD200, NULL, NULL);
AddCommand(pInter, "MakeRitaWin", MakeRitaWin, NULL, NULL);
/*
AddCommand(pInter,"MakeDifrac",MakeDifrac,NULL,NULL);
*/
@ -196,6 +198,7 @@ static void RemovePsiCommands(SicsInterp * pSics)
RemoveCommand(pSics, "MakeSinq");
RemoveCommand(pSics, "MakeTableDrive");
RemoveCommand(pSics, "MakeAmorSet");
RemoveCommand(pSics, "MakeRitaWin");
}
/*---------------------------------------------------------------------*/