Module: wine Branch: master Commit: b6012061292e1dc2ebbf929736dd2244ae85fd3a URL: http://source.winehq.org/git/wine.git/?a=commit;h=b6012061292e1dc2ebbf929736...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Dec 12 14:39:08 2007 +0100
winecrt0: DriverEntry is a WINAPI function.
---
dlls/winecrt0/drv_entry.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winecrt0/drv_entry.c b/dlls/winecrt0/drv_entry.c index 89e3fea..946a414 100644 --- a/dlls/winecrt0/drv_entry.c +++ b/dlls/winecrt0/drv_entry.c @@ -25,7 +25,7 @@ #include "crt0_private.h"
struct _DRIVER_OBJECT; -extern NTSTATUS DriverEntry( struct _DRIVER_OBJECT *obj, UNICODE_STRING *path ); +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 ) {