- Timestamp:
- Dec 12, 2000, 3:50:09 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/dev32/d32init.c
r4774 r4790 1 /* $Id: d32init.c,v 1.2 6 2000-12-11 06:22:14bird Exp $1 /* $Id: d32init.c,v 1.27 2000-12-12 14:50:09 bird Exp $ 2 2 * 3 3 * d32init.c - 32-bits init routines. … … 701 701 * push ebp 702 702 * mov eax, dword ptr [xxxxxxxx] 703 * or 704 * sub esp, imm8 705 * push ebx 706 * push edi 703 707 * 704 708 * These are allowed when not overloading: … … 729 733 if ((pach[0] == 0x55 && (pach[1] == 0x8b || pach[1] == 0xa1)) /* the two first prologs */ 730 734 || 735 (pach[0] == 0x83 && pach[3] == 0x53 && pach[4] == 0x57) /* the third prolog */ 736 || 731 737 (pach[0] == 0xB8 && (pach[5] == 0xEB || pach[5] == 0x55) && !fOverload) /* the two next prologs */ 732 738 ||
Note:
See TracChangeset
for help on using the changeset viewer.