winecrt0: Add missing WINAPI on driver entry point.

This commit is contained in:
Alexandre Julliard 2008-10-18 12:12:05 +02:00
parent 5f1c27d821
commit d230e713b9
1 changed files with 1 additions and 1 deletions

View File

@ -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);