2005-09-02 17:19:42 +02:00
|
|
|
/*
|
|
|
|
* Default entry point for a native driver
|
|
|
|
*
|
|
|
|
* Copyright 2005 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-09-02 17:19:42 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winternl.h"
|
|
|
|
#include "wine/library.h"
|
|
|
|
#include "crt0_private.h"
|
|
|
|
|
|
|
|
struct _DRIVER_OBJECT;
|
2007-12-12 14:39:08 +01:00
|
|
|
extern NTSTATUS WINAPI DriverEntry( struct _DRIVER_OBJECT *obj, UNICODE_STRING *path );
|
2005-09-02 17:19:42 +02:00
|
|
|
|
2008-10-18 12:12:05 +02:00
|
|
|
NTSTATUS DECLSPEC_HIDDEN WINAPI __wine_spec_drv_entry( struct _DRIVER_OBJECT *obj, UNICODE_STRING *path )
|
2005-09-02 17:19:42 +02:00
|
|
|
{
|
|
|
|
BOOL needs_init = (__wine_spec_init_state != CONSTRUCTORS_DONE);
|
|
|
|
|
2009-03-31 16:06:11 +02:00
|
|
|
if (needs_init) _init( __wine_main_argc, __wine_main_argv, NULL );
|
2005-09-03 11:38:22 +02:00
|
|
|
return DriverEntry( obj, path );
|
|
|
|
/* there is no detach routine so we can't call destructors */
|
2005-09-02 17:19:42 +02:00
|
|
|
}
|