Alexandre Julliard : winecrt0: Add missing WINAPI on driver entry point.

Alexandre Julliard julliard at winehq.org
Sat Oct 18 13:38:24 CDT 2008


Module: wine
Branch: master
Commit: d230e713b97efa63796bfd4dc2c9d37f4602ed43
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d230e713b97efa63796bfd4dc2c9d37f4602ed43

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Sat Oct 18 12:12:05 2008 +0200

winecrt0: Add missing WINAPI on driver entry point.

---

 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 946a414..a55f81d 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);
 




More information about the wine-cvs mailing list