WSJT-X/WsprTxScheduler.h
Steven Franke 4bf2788cc8 Force tx schedule update when pctx changes
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5534 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-06-05 00:41:12 +00:00

20 lines
393 B
C++

#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <cstring>
#include <iostream>
using namespace std;
char tx[6][10];
int tx_table_2hr_slot=-1, tx_table_pctx=0;
int tx_band_sum(char bsum[10]);
int tx_add_to_band(int band);
int tx_sum();
int tx_add_one(char* tx);
int tx_trim(char* tx, int ntxlim);
void tx_print();
int create_tx_schedule(int pctx);
int next_tx_state(int pctx);