Closed GoogleCodeExporter closed 9 years ago
Ping ?
Original comment by kom...@gmail.com
on 21 Jul 2012 at 1:46
Why don't you use NP_LOADDS again instead of defining a new macro, NP_CALLBACK?
Original comment by josh...@gmail.com
on 23 Jul 2012 at 8:48
NP_CALLBACK is already being used in mozilla/dom/plugins/nsNPAPIPlugin.h and
nsNPAPIPlugin.cpp.
And I moved it from nsNPAPIPlugin.h
Original comment by kom...@gmail.com
on 24 Jul 2012 at 3:25
Please just use NP_LOADDS. We don't need to worry about what nsNPAPIPlugin does
here, no need for NP_CALLBACK.
Original comment by josh....@gmail.com
on 24 Jul 2012 at 5:11
Ok, I've replaced NP_CALLBACK with NP_LOADDS.
If so, we should change nsNPAPIPlugin accordingly to this, later ?
Original comment by kom...@gmail.com
on 25 Jul 2012 at 1:54
Attachments:
I'm happy with this patch, let's get a look from Stuart Morgan as well though.
Stuart?
No need to change the Mozilla code here.
Original comment by josh....@gmail.com
on 25 Jul 2012 at 1:49
I'm not at all familiar with OS/2; what does _System do, and what's the compile
error this fixes?
Original comment by stuart.morgan
on 26 Jul 2012 at 8:00
_System is the calling convention used for a DLL entry.
And this patch fixes the following case.
----- call.cpp
typedef int (*fnTest)( int, int );
int _System test( int a, int b )
{
return a + b;
}
int main( void )
{
fnTest fn = test;
return fn(10, 10);
}
-----
g++ -c call.cpp generates the following error.
-----
call.cpp: In function 'int main()':
call.cpp:10: error: invalid conversion from 'int (*)(int, int)' to 'int
(*)(int, int)'
-----
Original comment by kom...@gmail.com
on 27 Jul 2012 at 4:34
Ping ?
Original comment by kom...@gmail.com
on 31 Jul 2012 at 6:46
LGTM (although I'm wondering why in all the time the OS/2 define has been
there, this has never come up before).
As a side note, yay gcc for it's oh-so-helpful error messages.
Original comment by stuart.morgan
on 12 Aug 2012 at 6:32
Committed.
Original comment by josh....@gmail.com
on 13 Aug 2012 at 7:05
Original issue reported on code.google.com by
kom...@gmail.com
on 14 Jul 2012 at 4:37Attachments: