Thursday, September 28, 2023

InstallScript: How to use Kernel32 MoveFile

InstallScript: How to use Kernel32 MoveFile

MoveFile Kernel32 API function moves an existing file or a directory, including its children.
Below shows an example code how to use it in InstallScript

No comments:

Hello world assembly on x86 Linux

Hello world assembly on x86 Linux Save code below as hello.asm global _start section .data message: db 'hello, world!', 10 secti...