From: short <> Date: Wed, 16 Apr 2003 14:34:52 +0000 (+0000) Subject: PWORK_QUEUE_ITEM->Routine must be always 'stdcall' as it is a callback X-Git-Tag: captive-0_2 X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=commitdiff_plain;h=refs%2Ftags%2Fcaptive-0_2 PWORK_QUEUE_ITEM->Routine must be always 'stdcall' as it is a callback --- diff --git a/include/ddk/extypes.h b/include/ddk/extypes.h index 6093fc5..8575677 100644 --- a/include/ddk/extypes.h +++ b/include/ddk/extypes.h @@ -78,7 +78,12 @@ typedef struct _ZONE_ENTRY } ZONE_ENTRY, *PZONE_ENTRY; -typedef VOID STDCALL_FUNC +typedef VOID +#ifndef LIBCAPTIVE + STDCALL_FUNC +#else /* !LIBCAPTIVE */ + CAPTIVE_STDCALL +#endif /* !LIBCAPTIVE */ (*PWORKER_THREAD_ROUTINE)(PVOID Parameter); typedef struct _WORK_QUEUE_ITEM