mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
686 B
23 lines
686 B
;******************************************************************************
|
|
;
|
|
; Name: DllEntry.asm
|
|
;
|
|
; Purpose: Entry point for all DOS DLLs. This entry point is called
|
|
; from LoadModR when the DLL is loaded. This function just
|
|
; jumps to the DLL init code. When the init code returns,
|
|
; it will return directly into LoadModR.
|
|
;
|
|
; Revision History:
|
|
; 04/19/91 - Dave Steckler - Created
|
|
; 05/01/91 - Dave Steckler - call to DOSDLLInit
|
|
;
|
|
;******************************************************************************
|
|
|
|
.MODEL LARGE
|
|
|
|
extrn _DOSDLLInit:far
|
|
|
|
__aDBused = 0
|
|
public __aDBused
|
|
|
|
end _DOSDLLInit
|