Gut, dann wa ich wohl irgendwie blid
aber wie bekomm ich jetzt das
FORCEINLINE und volatile nach Delphi?
Code:
FORCEINLINE
PVOID
RtlSecureZeroMemory(
IN PVOID ptr,
IN SIZE_T cnt
)
{
[b]volatile[/b] char *vptr = ([b]volatile[/b] char *)ptr;
while (cnt) {
*vptr = 0;
vptr++;
cnt--;
}
return ptr;
}
Der Rest ist leicht ... beziehungsweise ich hab da auch 'ne
ASM-Version
[edit]
OK, FORCEINLINE ist wohl sows wie INLINE in Delphi, also erstmal egal.