Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.

This commit is contained in:
Colin Finck 2017-10-03 07:45:34 +00:00
parent b94e2d8ca0
commit c2c66aff7d
24198 changed files with 0 additions and 37285 deletions

View 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