__attribute((stdcall)) on member functions of C++ classes...

Peter Hawkins dph-man@iName.com
Sat May 16 21:59:00 GMT 1998


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@cygnus.com" with one line of text: "help".



More information about the Cygwin mailing list