Specifies that a function should use register_abi for the calling convention.
__declspec (register_abi) function_prototype;
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.