RE: Berkeley DB -- anyone care?
- Posted by Matthew Lewis <matthewwalkerlewis at YAHOO.COM> Jan 06, 2003
- 546 views
> From: Robert Craig [mailto:rds at RapidEuphoria.com] > I believe the terms "cdecl" and "stdcall" are > purely Windows terminology. On Linux there > seems to be just one calling convention, > probably different from either cdecl or stdcall. > I don't know if it even has a name. > It's insane that Windows has two conventions. Don't forget 'thiscall'. That's the default calling convention for C++ member functions without variable arguments. I ran into this trying to wrap wxWindows. Mostly got it solved ('this' gets stored in ecx). Matt Lewis