mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-17 09:31:59 -05:00
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:
parent
25c039f672
commit
3f3eccf1a4
3
go.bat
3
go.bat
@ -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
|
||||
|
4
igray.c
4
igray.c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user