?? dllsupp.asm
字號(hào):
;***
;dllsupp.asm - Definitions of public constants
;
; Copyright (c) Microsoft Corporation. All rights reserved.
;
;Purpose:
; Provides definitions for public constants (absolutes) that are
; 'normally' defined in objects in the C library, but must be defined
; here for clients of crtdll.dll & msvcrt*.dll. These constants are:
;
; _except_list
; _fltused
; _ldused
;
;*******************************************************************************
.686
.model flat,c
; offset, with respect to FS, of pointer to currently active exception handler.
; referenced by compiler generated code for SEH and by _setjmp().
public _except_list
_except_list equ 0
public _fltused
_fltused equ 9876h
public _ldused
_ldused equ 9876h
end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -