diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2013-04-29 16:04:58 +0200 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-04-29 16:04:58 +0200 | 
| commit | 0522ef2ec6de1bc35721613ded92c832930e9a9e (patch) | |
| tree | d4b7ca32558895da812733af8d48f94ab34bbd95 /ftnoir_protocol_fg | |
| parent | 6fdcf9004e0aafb796592ab5120f1bd90190e2c3 (diff) | |
Correct prototypes
Diffstat (limited to 'ftnoir_protocol_fg')
| -rw-r--r-- | ftnoir_protocol_fg/ftnoir_protocol_fg.cpp | 4 | ||||
| -rw-r--r-- | ftnoir_protocol_fg/ftnoir_protocol_fg_dialog.cpp | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/ftnoir_protocol_fg/ftnoir_protocol_fg.cpp b/ftnoir_protocol_fg/ftnoir_protocol_fg.cpp index e15f5965..0f420883 100644 --- a/ftnoir_protocol_fg/ftnoir_protocol_fg.cpp +++ b/ftnoir_protocol_fg/ftnoir_protocol_fg.cpp @@ -233,7 +233,7 @@ bool FTNoIR_Protocol::checkServerInstallationOK()  //   _GetProtocol@0  - Common name decoration for __stdcall functions in C language.
  //#pragma comment(linker, "/export:GetProtocol=_GetProtocol@0")
 -extern "C" FTNOIR_PROTOCOL_BASE_EXPORT void* CALLING_CONVENTION GetConstructor()
 +extern "C" FTNOIR_PROTOCOL_BASE_EXPORT IProtocol* CALLING_CONVENTION GetConstructor()
  {
 -    return (IProtocol*) new FTNoIR_Protocol;
 +    return new FTNoIR_Protocol;
  }
 diff --git a/ftnoir_protocol_fg/ftnoir_protocol_fg_dialog.cpp b/ftnoir_protocol_fg/ftnoir_protocol_fg_dialog.cpp index 9867ea2f..2c3de324 100644 --- a/ftnoir_protocol_fg/ftnoir_protocol_fg_dialog.cpp +++ b/ftnoir_protocol_fg/ftnoir_protocol_fg_dialog.cpp @@ -215,7 +215,7 @@ void FGControls::chkLocalPCOnlyChanged() {  //   _GetProtocolDialog@0  - Common name decoration for __stdcall functions in C language.
  //#pragma comment(linker, "/export:GetProtocolDialog=_GetProtocolDialog@0")
 -extern "C" FTNOIR_PROTOCOL_BASE_EXPORT void* CALLING_CONVENTION GetDialog( )
 +extern "C" FTNOIR_PROTOCOL_BASE_EXPORT IProtocolDialog* CALLING_CONVENTION GetDialog( )
  {
 -    return (IProtocolDialog*) new FGControls;
 +    return new FGControls;
  }
  | 
