From d230e713b97efa63796bfd4dc2c9d37f4602ed43 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Sat, 18 Oct 2008 12:12:05 +0200 Subject: [PATCH] winecrt0: Add missing WINAPI on driver entry point. --- dlls/winecrt0/drv_entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winecrt0/drv_entry.c b/dlls/winecrt0/drv_entry.c index 946a414baa6..a55f81db22a 100644 --- a/dlls/winecrt0/drv_entry.c +++ b/dlls/winecrt0/drv_entry.c @@ -27,7 +27,7 @@ struct _DRIVER_OBJECT; extern NTSTATUS WINAPI DriverEntry( struct _DRIVER_OBJECT *obj, UNICODE_STRING *path ); -NTSTATUS DECLSPEC_HIDDEN __wine_spec_drv_entry( struct _DRIVER_OBJECT *obj, UNICODE_STRING *path ) +NTSTATUS DECLSPEC_HIDDEN WINAPI __wine_spec_drv_entry( struct _DRIVER_OBJECT *obj, UNICODE_STRING *path ) { BOOL needs_init = (__wine_spec_init_state != CONSTRUCTORS_DONE);