VirtualComputer/VirtualComputerMSCOM/src/main/java/sznp/virtualcomputer/util/IEventHandler.java
NorbiPeti 7b0714bda0 Restart Windows implementation, using C# fully again
Created new .NET 5 project instead of the existing one
Installed JWS API but it's probably not what I need
2021-06-04 03:17:02 +02:00

15 lines
290 B
Java

package sznp.virtualcomputer.util;
import lombok.var;
import org.virtualbox_6_1.IEvent;
public interface IEventHandler {
void handleEvent(IEvent iEvent);
@Override
default void handleEvent(long l) {
var dp = new Dispatch();
dp.m_pDispatch = l;
handleEvent(new IEvent(dp));
}
}