Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

54 lines
800 B

/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
DRIVER.H
Abstract:
Prototypes for functions that control and get status from drivers.
Author:
Dan Lafferty (danl) 28-Apr-1991
Environment:
User Mode -Win32
Revision History:
28-Apr-1991 danl
created
--*/
DWORD
ScLoadDeviceDriver(
LPSERVICE_RECORD ServiceRecord
);
DWORD
ScControlDriver(
DWORD ControlCode,
LPSERVICE_RECORD ServiceRecord,
LPSERVICE_STATUS lpServiceStatus
);
DWORD
ScGetDriverStatus(
IN OUT LPSERVICE_RECORD ServiceRecord,
OUT LPSERVICE_STATUS lpServiceStatus OPTIONAL
);
DWORD
ScUnloadDriver(
LPSERVICE_RECORD ServiceRecord
);
VOID
ScNotifyNdis(
LPSERVICE_RECORD ServiceRecord
);