mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-03 13:47:51 -04:00
Declare _q65_mask() as static when first declared, in q65.h. Add qracodes.o to Makefile.Win.
This commit is contained in:
parent
1f06fd65fc
commit
5d352d3068
@ -16,7 +16,7 @@ CFLAGS = -O2 -Wall -I. -D_WIN32
|
|||||||
all: libq65.a q65.exe
|
all: libq65.a q65.exe
|
||||||
|
|
||||||
OBJS1 = normrnd.o npfwht.o pdmath.o qra15_65_64_irr_e23.o \
|
OBJS1 = normrnd.o npfwht.o pdmath.o qra15_65_64_irr_e23.o \
|
||||||
q65.o
|
q65.o qracodes.o
|
||||||
|
|
||||||
libq65.a: $(OBJS1)
|
libq65.a: $(OBJS1)
|
||||||
ar cr libq65.a $(OBJS1)
|
ar cr libq65.a $(OBJS1)
|
||||||
|
@ -96,8 +96,8 @@ int q65_esnodb_fastfading(
|
|||||||
int _q65_get_message_length(const qracode *pCode);
|
int _q65_get_message_length(const qracode *pCode);
|
||||||
int _q65_get_codeword_length(const qracode *pCode);
|
int _q65_get_codeword_length(const qracode *pCode);
|
||||||
float _q65_get_code_rate(const qracode *pCode);
|
float _q65_get_code_rate(const qracode *pCode);
|
||||||
void _q65_mask(const qracode *pcode, float *ix, const int *mask, const int *x);
|
static void _q65_mask(const qracode *pcode, float *ix, const int *mask, const int *x);
|
||||||
int _q65_get_alphabet_size(const qracode *pCode);
|
int _q65_get_alphabet_size(const qracode *pCode);
|
||||||
int _q65_get_bits_per_symbol(const qracode *pCode);
|
int _q65_get_bits_per_symbol(const qracode *pCode);
|
||||||
|
|
||||||
#endif // _qra65_h
|
#endif // _qra65_h
|
||||||
|
Loading…
x
Reference in New Issue
Block a user