⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pgpndis.asm

📁 vc环境下的pgp源码
💻 ASM
字号:
.LALL
;	This file is borrowed from the PPTP driver from the canceled NetCrypto
;	project with added functionality like Win95 version detection(Gold or OSR2).
;	More necessary features not provided by NDIS Lib will follow.
;	

    TITLE $PGPLNK
    .386P

INCLUDE VMM.INC
INCLUDE NDIS.INC
INCLUDE NETVXD.INC			; Net VxD initialization oredr


Declare_Virtual_Device %MAC, 3, 10, <%MAC>_Control, 3668h, \
    MAC_INIT_ORDER, 0, 0, 0


;******************************************************************************
;            P R O T E C T E D   M O D E   I N I T   C O D E
;******************************************************************************

IFDEF CHICAGO
VxD_LOCKED_DATA_SEG

Public bInitAlready	
	bInitAlready	 DB 0

Public _GlobalDOSVersion
	_GlobalDOSVersion DW 0
	
VxD_LOCKED_DATA_ENDS
ENDIF

VxD_LOCKED_CODE_SEG


BeginProc C_Device_Init

IFDEF NDIS_STDCALL
extern _DriverEntry@8:NEAR
ELSE
extern _DriverEntry:NEAR
ENDIF

IFDEF CHICAGO
    mov  al, bInitAlready
	cmp  al, 0					; Make sure we' haven't been called already.
	jnz  Succeed_Init_Phase
	inc  bInitAlready			; Set the "Called Already" Flag
ENDIF

; Make sure the wrapper (Ndis.386) is loaded
    VxDcall NdisGetVersion
    jc   Fail_Init_Phase

; Get the DOS version
	VMMcall Get_Machine_Info
	mov		_GlobalDOSVersion, ax
	jc		Fail_Init_Phase

    push 0
    push 0

IFDEF NDIS_STDCALL
    call _DriverEntry@8
ELSE
    call _DriverEntry
    add  esp,8
ENDIF

    cmp  eax,NDIS_STATUS_SUCCESS
    jne  Fail_Init_Phase
Succeed_Init_Phase:
    clc
    ret

Fail_Init_Phase:
    stc
    ret
EndProc C_Device_Init

Begin_Control_Dispatch %MAC
    Control_Dispatch Device_Init,       			C_Device_Init
IFDEF CHICAGO
    Control_Dispatch Sys_Dynamic_Device_Init,       C_Device_Init
ENDIF
End_Control_Dispatch %MAC



VxD_LOCKED_CODE_ENDS

;******************************************************************************
;                 R E A L   M O D E   I N I T   C O D E
;******************************************************************************

;******************************************************************************
;
;   MAC_Real_Init
;
;   DESCRIPTION:
;
;   ENTRY:
;
;   EXIT:
;
;   USES:
;
;==============================================================================

VxD_REAL_INIT_SEG

BeginProc MAC_Real_Init

;
;   If another us is loaded then don't load -- Just abort our load
;
     test    bx, Duplicate_From_INT2F OR Duplicate_Device_ID
     jnz     SHORT Ndis_RI_Abort_Load



;   No other  is loaded.

     xor     bx, bx
     xor     si, si
     mov     ax, Device_Load_Ok
     ret

Ndis_RI_Abort_Load:
     xor     bx, bx
     xor     si, si
     mov     ax, Abort_Device_Load
     ret

EndProc MAC_Real_Init

VxD_REAL_INIT_ENDS

END MAC_Real_Init

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -