Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 991 Bytes

calling-example-function-prototype-and-call.md

File metadata and controls

39 lines (31 loc) · 991 Bytes
description title ms.date helpviewer_keywords ms.assetid
Learn more about: Calling Example: Function Prototype and Call
Calling Example: Function Prototype and Call
11/04/2016
calling conventions, examples [C++]
examples [C++], calling conventions
e4275d1f-df2e-4bfc-a162-eb43ec69554a

Calling Example: Function Prototype and Call

Microsoft Specific

The following example shows the results of making a function call using various calling conventions.

This example is based on the following function skeleton. Replace calltype with the appropriate calling convention.

void    calltype MyFunc( char c, short s, int i, double f );
.
.
.
void    MyFunc( char c, short s, int i, double f )
    {
    .
    .
    .
    }
.
.
.
MyFunc ('x', 12, 8192, 2.7183);

For more information, see Results of Calling Example.

END Microsoft Specific

See also

Calling Conventions