mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:52:59 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
33
sdk/lib/rtl/i386/res_asm.s
Normal file
33
sdk/lib/rtl/i386/res_asm.s
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* COPYRIGHT: GNU GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Run-Time Library
|
||||
* PURPOSE:
|
||||
* FILE: lib/rtl/i386/res_asm.s
|
||||
* PROGRAMER:
|
||||
*/
|
||||
|
||||
#include <asm.inc>
|
||||
#include <ks386.inc>
|
||||
|
||||
EXTERN _LdrpAccessResource@16:PROC
|
||||
|
||||
/*
|
||||
* On x86, Shrinker, an executable compressor, depends on the
|
||||
* "call access_resource" instruction being there.
|
||||
*/
|
||||
.code
|
||||
PUBLIC _LdrAccessResource@16
|
||||
_LdrAccessResource@16:
|
||||
push ebp
|
||||
mov ebp, esp
|
||||
sub esp, 4
|
||||
push [ebp + 24]
|
||||
push [ebp + 20]
|
||||
push [ebp + 16]
|
||||
push [ebp + 12]
|
||||
push [ebp + 8]
|
||||
call _LdrpAccessResource@16
|
||||
leave
|
||||
ret 16
|
||||
|
||||
END
|
Loading…
Add table
Add a link
Reference in a new issue