Mail Archives: cygwin/1998/05/17/03:12:09
Hi there...
Why does G++ ignore the __attribute__((stdcall)) in the following:
#include <iostream.h>
class theclass
{
public:
void __attribute__((stdcall)) testfunc(int a, int b);
};
void __attribute__((stdcall)) theclass::testfunc(int a, int b)
{
cout << a << b;
}
main()
{
theclass a;
a.testfunc(0,1);
}
Rather than actually using the stdcall calling convention, GCC just
issues a warning: 'stdcall' attribute directive ignored.
My question is... why? What's stopping class member functions from using
the stdcall calling convention?
:-)
dph-man
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -