blob: 7f7ad79b17117360782906cc2dc38f6f5a644f33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
lslmlid.h
Abstract:
This file contains all the MLID interface routine definitions to the LSL
Author:
Sean Selitrennikoff (SeanSe) 3-8-93
Environment:
Kernel Mode.
Revision History:
--*/
extern MLID_Reg NdisMlidHandlerInfo;
PMLID_ConfigTable
GetMLIDConfiguration(
UINT32 BoardNumber
);
PMLID_StatsTable
GetMLIDStatistics(
UINT32 BoardNumber
);
UINT32
AddMulticastAddress(
UINT32 BoardNumber,
PUINT8 AddMulticastAddr
);
UINT32
DeleteMulticastAddress(
UINT32 BoardNumber,
PUINT8 DelMulticastAddr
);
UINT32
MLIDShutdown(
UINT32 BoardNumber,
UINT32 ShutDownType
);
UINT32
MLIDReset(
UINT32 BoardNumber
);
UINT32
SetLookAheadSize(
UINT32 BoardNumber,
UINT32 RequestSize
);
UINT32
PromiscuousChange(
UINT32 BoardNumber,
UINT32 PromiscuousState,
UINT32 PromiscuousMode
);
UINT32
MLIDManagement(
UINT32 BoardNumber,
PECB ManagementECB
);
VOID
MLIDSendHandler(
PECB SendECB
);
|