Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 227 Bytes

stdcall.md

File metadata and controls

14 lines (8 loc) · 227 Bytes

stdcall

A C calling convention, less used than cdecl.

Used on the Win32 API.

Advantages:

  • generates slightly smaller code
  • potentially faster.

Disadvantages:

  • it is not possible to pass variable number of arguments.