mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-18 23:23:03 +02:00

varargs/array of const overloads) * arrayconstructor and array of const are no longer compatible with the extra varargs parameters (so overloaded varargs and array of const cdecl functions can be distinguished) * fixed tprintf2 for the correct varargs syntax git-svn-id: trunk@4909 -
14 lines
720 B
PHP
14 lines
720 B
PHP
|
|
|
|
function strfmon(__s:Pchar; __maxsize:size_t; __format:Pchar; args:array of const):ssize_t;cdecl;external clib name 'strfmon';
|
|
function strfmon(__s:Pchar; __maxsize:size_t; __format:Pchar):ssize_t;cdecl;varargs;external clib name 'strfmon';
|
|
function __strfmon_l(__s:Pchar; __maxsize:size_t; loc:__locale_t; __format:Pchar; args:array of const):ssize_t;cdecl;external clib name '__strfmon_l';
|
|
function __strfmon_l(__s:Pchar; __maxsize:size_t; loc:__locale_t; __format:Pchar):ssize_t;cdecl;varargs;external clib name '__strfmon_l';
|
|
|
|
|
|
{ ---------------------------------------------------------------------
|
|
Borland compatibility types
|
|
---------------------------------------------------------------------}
|
|
|
|
// Type
|