mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
17 lines
317 B
Plaintext
17 lines
317 B
Plaintext
; QQ 音乐更新 - 占位文件
|
|
; 使用 FASM 编译即可。
|
|
|
|
format PE GUI 4.0
|
|
entry start
|
|
|
|
include 'win32a.inc'
|
|
|
|
section '.text' code readable executable
|
|
start:
|
|
invoke ExitProcess, 0
|
|
|
|
section '.idata' import data readable writeable
|
|
library kernel,'KERNEL32.DLL'
|
|
import kernel,\
|
|
ExitProcess,'ExitProcess'
|