summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/lsl/ndismlid.h
blob: ff155082041d7b573fe48f80f022543a2f168e82 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*++

Copyright (c) 1990  Microsoft Corporation

Module Name:

    ndismlid.h

Abstract:

    This file contains all the NDIS protocol interface routines.

Author:

    Sean Selitrennikoff (SeanSe) 3-8-93

Environment:

    Kernel Mode.

Revision History:

--*/


//
// Protocol Reserved portion of NDIS_PACKET
//

typedef struct _MLID_RESERVED {

    PECB SendECB;

    //
    // Here is a cheap way of getting buffers for media headers
    //
    UCHAR MediaHeaderLength;
    UCHAR MediaHeader[64];

} MLID_RESERVED, *PMLID_RESERVED;

//
// Returns the reserved portion of the NDIS_PACKET.
//
#define PMLID_RESERVED_FROM_PNDIS_PACKET(_P)  (PMLID_RESERVED)&((_P)->ProtocolReserved[0])


extern
VOID
NdisMlidOpenAdapterComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_STATUS Status,
    IN NDIS_STATUS OpenErrorStatus
    );

extern
VOID
NdisMlidCloseAdapterComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_STATUS Status
    );

extern
VOID
NdisMlidSendComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN PNDIS_PACKET Packet,
    IN NDIS_STATUS Status
    );

extern
VOID
NdisMlidTransferDataComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN PNDIS_PACKET Packet,
    IN NDIS_STATUS Status,
    IN UINT BytesTransferred
    );

extern
VOID
NdisMlidResetComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_STATUS Status
    );

extern
VOID
NdisMlidRequestComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN PNDIS_REQUEST NdisRequest,
    IN NDIS_STATUS Status
    );

extern
NDIS_STATUS
NdisMlidReceive(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_HANDLE MacReceiveContext,
    IN PVOID HeaderBuffer,
    IN UINT HeaderBufferSize,
    IN PVOID LookAheadBuffer,
    IN UINT LookaheadBufferSize,
    IN UINT PacketSize
    );

extern
VOID
NdisMlidReceiveComplete(
    IN NDIS_HANDLE ProtocolBindingContext
    );

extern
VOID
NdisMlidStatus(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_STATUS GeneralStatus,
    IN PVOID StatusBuffer,
    IN UINT StatusBufferSize
    );

extern
VOID
NdisMlidStatusComplete(
    IN NDIS_HANDLE ProtocolBindingContext
    );