网络驱动开发

源代码在线查看: public.h

软件大小: 2967 K
上传用户: bi_yangfeng
关键词: 网络 驱动开发
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*++
				Copyright (c) 1990-2000    Microsoft Corporation All Rights Reserved
				
				Module Name:
				
				    public.h
				
				Abstract:
				
				    This module contains the common declarations shared by driver
				    and user applications.
				
				Author:
				
				     
				Environment:
				
				    user and kernel
				Notes:
				
				
				Revision History:
				
				
				--*/
				#ifndef __PUBLIC_H
				#define __PUBLIC_H
				
				//
				// To support ioctls from user-mode:
				//
				
				#define LINKNAME_STRING     L"\\DosDevices\\Mux"
				#define NTDEVICE_STRING     L"\\Device\\Mux"
				
				#define  MUX_CUSTOM_EVENT      1
				
				#define NOTIFY_SIGNATURE       0xAFCDABAB
				
				typedef struct _NOTIFY_CUSTOM_EVENT {
				  ULONG           uSignature;
				  ULONG           uEvent;
				  WCHAR           szMiniport[1];
				} NOTIFY_CUSTOM_EVENT, *PNOTIFY_CUSTOM_EVENT;
				#endif
				
				
				
							

相关资源