Fixed igray.c to compile on Windows; changed go.bat accordingly.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@37 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2005-12-29 21:07:24 +00:00
parent 25c039f672
commit 3f3eccf1a4
3 changed files with 7 additions and 2 deletions

3
go.bat
View File

@ -2,4 +2,5 @@ cl /c /DBIGSYM=1 /Foinit_rs.obj init_rs.c
cl /c /DBIGSYM=1 /Foencode_rs.obj encode_rs.c
cl /c /DBIGSYM=1 /Ox /Zd /Fodecode_rs.obj decode_rs.c
cl /c /DWIN32=1 wrapkarn.c
df /exe:JT65code.exe JT65code_all.f /link wrapkarn.obj init_rs.obj encode_rs.obj decode_rs.obj
cl /c /DWIN32=1 igray.c
df /exe:JT65code.exe JT65code_all.f /link wrapkarn.obj init_rs.obj encode_rs.obj decode_rs.obj igray.obj

View File

@ -1,4 +1,8 @@
#ifdef WIN32
extern int __stdcall IGRAY(int *n0, int *idir)
#else
int igray_(int *n0, int *idir)
#endif
{
int n;
unsigned long sh;

View File

@ -1,4 +1,4 @@
# ----------------------------------------------------------- WSJT
# ---------------------------------------------------------- WSJT
from Tkinter import *
from tkFileDialog import *
import Pmw