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_ft/ftnoir_protocol_ft_dialog.cpp | |
parent | 6fdcf9004e0aafb796592ab5120f1bd90190e2c3 (diff) |
Correct prototypes
Diffstat (limited to 'ftnoir_protocol_ft/ftnoir_protocol_ft_dialog.cpp')
-rw-r--r-- | ftnoir_protocol_ft/ftnoir_protocol_ft_dialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ftnoir_protocol_ft/ftnoir_protocol_ft_dialog.cpp b/ftnoir_protocol_ft/ftnoir_protocol_ft_dialog.cpp index ffdd7ddd..65c4f3cf 100644 --- a/ftnoir_protocol_ft/ftnoir_protocol_ft_dialog.cpp +++ b/ftnoir_protocol_ft/ftnoir_protocol_ft_dialog.cpp @@ -227,7 +227,7 @@ void FTControls::selectDLL() { // GetProtocolDialog - Undecorated name, which can be easily used with GetProcAddress
// Win32 API function.
// _GetProtocolDialog@0 - Common name decoration for __stdcall functions in C language.
-extern "C" FTNOIR_PROTOCOL_BASE_EXPORT void* CALLING_CONVENTION GetDialog( )
+extern "C" FTNOIR_PROTOCOL_BASE_EXPORT IProtocolDialog* CALLING_CONVENTION GetDialog( )
{
- return (IProtocolDialog*) new FTControls;
+ return new FTControls;
}
|