~ubuntu-branches/ubuntu/saucy/openvpn/saucy

« back to all changes in this revision

Viewing changes to tap-win32/prototypes.h

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Gonzalez Iniesta
  • Date: 2005-01-05 19:03:11 UTC
  • mto: (1.4.1) (10.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050105190311-d0uioiqtor5xbzre
Tags: upstream-1.99+2.rc6
ImportĀ upstreamĀ versionĀ 1.99+2.rc6

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    IN PUNICODE_STRING p_RegistryPath
37
37
   );
38
38
 
 
39
VOID TapDriverUnload
 
40
   (
 
41
    IN PDRIVER_OBJECT p_DriverObject
 
42
   );
 
43
 
39
44
NDIS_STATUS AdapterCreate
40
45
   (
41
46
    OUT PNDIS_STATUS p_ErrorStatus,
107
112
 
108
113
NDIS_STATUS CreateTapDevice
109
114
   (
110
 
    TapAdapterPointer p_Adapter
 
115
    TapExtensionPointer p_Extension,
 
116
    const char *p_Name
111
117
   );
112
118
 
113
119
VOID DestroyTapDevice
114
120
   (
115
 
    TapAdapterPointer p_Adapter
 
121
    TapExtensionPointer p_Extension
116
122
   );
117
123
 
118
124
VOID TapDeviceFreeResources
119
125
   (
120
 
    TapAdapterPointer p_Adapter
 
126
    TapExtensionPointer p_Extension
121
127
    );
122
128
 
123
129
NTSTATUS CompleteIRP
124
130
   (
125
 
    TapAdapterPointer p_Adapter,
126
131
    IN PIRP p_IRP,
127
132
    IN TapPacketPointer p_PacketBuffer,
128
133
    IN CCHAR PriorityBoost
136
141
 
137
142
VOID CancelIRP
138
143
   (
139
 
    IN PDEVICE_OBJECT p_DeviceObject,
 
144
    TapExtensionPointer p_Extension,
140
145
    IN PIRP p_IRP,
141
146
    BOOLEAN callback
142
147
   );
143
148
 
144
149
VOID FlushQueues
145
150
   (
146
 
    TapAdapterPointer p_Adapter
 
151
    TapExtensionPointer p_Extension
147
152
   );
148
153
 
149
 
VOID ResetTapDevState
 
154
VOID ResetTapAdapterState
150
155
   (
151
156
    TapAdapterPointer p_Adapter
152
157
   );