rename net to network
[reactos.git] / reactos / drivers / net / tcpip / include / lock.h
diff --git a/reactos/drivers/net/tcpip/include/lock.h b/reactos/drivers/net/tcpip/include/lock.h
deleted file mode 100644 (file)
index 21c38fe..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef _LOCK_H
-#define _LOCK_H
-
-extern KIRQL TcpipGetCurrentIrql();
-extern VOID TcpipInitializeSpinLock( PKSPIN_LOCK SpinLock );
-extern VOID TcpipAcquireSpinLock( PKSPIN_LOCK SpinLock, PKIRQL Irql );
-extern VOID TcpipReleaseSpinLock( PKSPIN_LOCK SpinLock, KIRQL Irql );
-extern VOID TcpipAcquireSpinLockAtDpcLevel( PKSPIN_LOCK SpinLock );
-extern VOID TcpipReleaseSpinLockFromDpcLevel( PKSPIN_LOCK SpinLock );
-extern VOID TcpipInterlockedInsertTailList( PLIST_ENTRY ListHead,
-                                           PLIST_ENTRY Item,
-                                           PKSPIN_LOCK Lock );
-extern VOID TcpipAcquireFastMutex( PFAST_MUTEX Mutex );
-extern VOID TcpipReleaseFastMutex( PFAST_MUTEX Mutex );
-extern VOID TcpipRecursiveMutexInit( PRECURSIVE_MUTEX RecMutex );
-extern UINT TcpipRecursiveMutexEnter( PRECURSIVE_MUTEX RecMutex,
-                                     BOOL ToWrite );
-extern VOID TcpipRecursiveMutexLeave( PRECURSIVE_MUTEX RecMutex );
-
-#endif/*_LOCK_H*/