Last change
on this file since 1010 was 847, checked in by bird, 26 years ago |
Initial checkin of Win32k. (not tested & pe2lx not up-to-date!)
|
File size:
1.4 KB
|
Line | |
---|
1 | ; $Id: calltab.asm,v 1.1 1999-09-06 02:20:00 bird Exp $
|
---|
2 | ;
|
---|
3 | ; callTab - Call back again table - table with entry for each function which is overrided.
|
---|
4 | ; It holds the part of the prolog which was replaced by a jmp instruction.
|
---|
5 | ;
|
---|
6 | ; Copyright (c) 1998-1999 knut st. osmundsen
|
---|
7 | ;
|
---|
8 | ;
|
---|
9 | .386p
|
---|
10 |
|
---|
11 | ;
|
---|
12 | ; Include files
|
---|
13 | ;
|
---|
14 | include devsegdf.inc
|
---|
15 |
|
---|
16 | ;
|
---|
17 | ; Exported symbols
|
---|
18 | ;
|
---|
19 | public callTab
|
---|
20 | public __ldrClose@4
|
---|
21 | public __ldrOpen@12
|
---|
22 | public __ldrRead@24
|
---|
23 | public __LDRQAppType@8
|
---|
24 |
|
---|
25 |
|
---|
26 | ;
|
---|
27 | ; Constants
|
---|
28 | ;
|
---|
29 | MAXSIZE_PROLOG EQU 10h
|
---|
30 |
|
---|
31 |
|
---|
32 | CALLTAB segment
|
---|
33 | assume cs:CALLTAB, ds:flat, ss:nothing
|
---|
34 |
|
---|
35 | callTab:
|
---|
36 | __ldrClose@4 PROC NEAR
|
---|
37 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
38 | __ldrClose@4 ENDP
|
---|
39 |
|
---|
40 | __ldrOpen@12 PROC NEAR
|
---|
41 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
42 | __ldrOpen@12 ENDP
|
---|
43 |
|
---|
44 | __ldrRead@24 PROC NEAR
|
---|
45 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
46 | __ldrRead@24 ENDP
|
---|
47 |
|
---|
48 | __LDRQAppType@8 PROC NEAR
|
---|
49 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
50 | __LDRQAppType@8 ENDP
|
---|
51 |
|
---|
52 | if 0
|
---|
53 | public __LDRLoadExe
|
---|
54 | __LDRLoadExe PROC NEAR
|
---|
55 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
56 | __LDRLoadExe END
|
---|
57 |
|
---|
58 | public __ldrGetResource
|
---|
59 | __ldrGetResource PROC NEAR
|
---|
60 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
61 | __ldrGetResource ENDP
|
---|
62 |
|
---|
63 | public __ldrOpenNewExe
|
---|
64 | __ldrOpenNewExe PROC NEAR
|
---|
65 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
66 | __ldrOpenNewExe ENDP
|
---|
67 |
|
---|
68 | public __ldrCreateMte
|
---|
69 | __ldrCreateMte PROC NEAR
|
---|
70 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
71 | __ldrCreateMte ENDP
|
---|
72 |
|
---|
73 | public __ldrGetMte
|
---|
74 | __ldrGetMte PROC NEAR
|
---|
75 | dw MAXSIZE_PROLOG dup(0cch)
|
---|
76 | __ldrGetMte ENDP
|
---|
77 |
|
---|
78 | endif
|
---|
79 |
|
---|
80 | CALLTAB ENDS
|
---|
81 |
|
---|
82 | END
|
---|
83 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.