Progress status display under Windows added.

This commit is contained in:
h_vogt 2008-05-24 18:21:44 +00:00
parent 655d8aea02
commit bb7b55bc63
2 changed files with 7 additions and 1 deletions

View File

@ -257,6 +257,9 @@ com_spec(wordlist *wl)
fdvec[i][j].cx_imag += value*sina;
}
}
#ifdef HAS_WINDOWS
SetAnalyse( "spec", (int)(j * 100/ fpts));
#endif
}
if (startf==0) {
freq[0] = 0;

View File

@ -5,8 +5,11 @@
#ifndef SPEC_H_INCLUDED
#define SPEC_H_INCLUDED
#ifdef HAS_WINDOWS
extern void SetAnalyse( char * Analyse, int Percent);
#endif
void com_spec(wordlist *wl);
#endif