__declspec(register_abi)

Specifies that a function should use register_abi for the calling convention.

Syntax

__declspec (register_abi) function_prototype;

Remarks

Declaring a function's prototype with this declaration specification tells the compiler use the specified calling convention. Also the user can specify compact_abi or standard_abi, if such a calling function is desired. This is especially useful for pure assembly functions.