mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 12:23:37 -05:00
Satisfied another compiler warning.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3308 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
45292eff52
commit
73cd30dd1b
@ -103,10 +103,10 @@ extern int ptt(int nport, int ntx, int* iptt, int* nopen);
|
||||
|
||||
#ifdef WIN32
|
||||
extern "C" {
|
||||
const bool HRDInterfaceConnect(const wchar_t *host, const ushort);
|
||||
bool HRDInterfaceConnect(const wchar_t *host, const ushort);
|
||||
void HRDInterfaceDisconnect();
|
||||
const bool HRDInterfaceIsConnected();
|
||||
const wchar_t* HRDInterfaceSendMessage(const wchar_t *msg);
|
||||
bool HRDInterfaceIsConnected();
|
||||
wchar_t* HRDInterfaceSendMessage(const wchar_t *msg);
|
||||
void HRDInterfaceFreeString(const wchar_t *lstring);
|
||||
}
|
||||
#endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
//-------------------------------------------------------------- MainWindow
|
||||
//------------------------------------------------------------- MainWindow
|
||||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
#include "devsetup.h"
|
||||
|
@ -81,10 +81,10 @@ public:
|
||||
|
||||
#ifdef WIN32
|
||||
extern "C" {
|
||||
const bool HRDInterfaceConnect(const wchar_t *host, const ushort);
|
||||
bool HRDInterfaceConnect(const wchar_t *host, const ushort);
|
||||
void HRDInterfaceDisconnect();
|
||||
const bool HRDInterfaceIsConnected();
|
||||
const wchar_t* HRDInterfaceSendMessage(const wchar_t *msg);
|
||||
bool HRDInterfaceIsConnected();
|
||||
wchar_t* HRDInterfaceSendMessage(const wchar_t *msg);
|
||||
void HRDInterfaceFreeString(const wchar_t *lstring);
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user