1 2 3 4 5 6 7 8 9 10 11 12
use crate::{windows::constants, emu}; pub fn FindNextFileW(emu: &mut emu::Emu) { let hndl = emu.regs().rcx; let find_data = emu.regs().rdx; log_red!(emu, "kernel32!FindNextFileW"); // TODO: implement emu.regs_mut().rax = constants::ERROR_NO_MORE_FILES; }