mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 03:43:44 +00:00
[HIDPARSE]
- Use cdecl for variadic function prototype See CORE-6447 svn path=/trunk/; revision=63590
This commit is contained in:
parent
e1149127bf
commit
bd4dce67d1
2 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ CopyFunction(
|
|||
}
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
__cdecl
|
||||
DebugFunction(
|
||||
IN LPCSTR FormatStr, ...)
|
||||
{
|
||||
|
|
|
@ -17,7 +17,7 @@ typedef PVOID (NTAPI *PHIDPARSER_ALLOC_FUNCTION)(ULONG Size);
|
|||
typedef VOID (NTAPI *PHIDPARSER_FREE_FUNCTION)(PVOID Item);
|
||||
typedef VOID (NTAPI *PHIDPARSER_ZERO_FUNCTION)(PVOID Item, ULONG Size);
|
||||
typedef VOID (NTAPI *PHIDPARSER_COPY_FUNCTION)(PVOID Target, PVOID Source, ULONG Size);
|
||||
typedef VOID (NTAPI *PHIDPARSER_DEBUG_FUNCTION)(LPCSTR Src, ...);
|
||||
typedef VOID (__cdecl *PHIDPARSER_DEBUG_FUNCTION)(LPCSTR Src, ...);
|
||||
|
||||
//
|
||||
// status code
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue