Revision [16400]

This is an old revision of KeyPgCdecl made by CountingPine on 2012-10-23 15:21:38.

 

CDECL


Specifies a cdecl-style calling convention in a procedure declaration

Syntax:
KeyPgSub Sub name Cdecl [KeyPgOverload Overload] [KeyPgAlias Alias "alias"] ( parameters )
KeyPgFunction Function name Cdecl [KeyPgOverload Overload] [KeyPgAlias Alias "alias"] ( parameters ) KeyPgAs as return_type

Description:
In procedure declarations, cdecl specifies that a procedure will use the cdecl calling convention. In the cdecl calling convention, any parameters are to be passed (pushed onto the stack) in the reverse order in which they are listed, that is, from right to left. The procedures need not preserve the EAX, ECX or EDX registers, and must not clean up the stack (pop any parameters) before it returns - that is left to the calling code.

cdecl is allowed to be used with variadic procedure declarations (those with the last parameter listed as "KeyPgDots ...").
cdecl is the default calling convention on Linux, the *BSDs, and DOS, unless another calling convention is explicitly specified or implied by one of the KeyPgExternBlock EXTERN blocks. cdecl is typically the default calling convention for C compilers, and it's used almost exclusively on Unix-like systems.

Examples:
' declaring 'strcpy' from the standard C library
Declare Function strcpy CDecl Alias "strcpy" (ByVal dest As ZString Ptr, ByVal src As ZString Ptr) As ZString Ptr


Differences from QB:
See also:
Back to Procedures
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki



sf.net phatcode