--- nono/vm/scheduler.h 2026/04/29 17:04:56 1.1.1.9 +++ nono/vm/scheduler.h 2026/04/29 17:04:59 1.1.1.10 @@ -142,9 +142,6 @@ class Scheduler : public Device // イベントを停止する void StopEvent(Event *event); - // VM 電源オフ時のコールバックを設定する。(GUI から呼ばれる) - void SetPowerOffCallback(void (*callback)()); - // パフォーマンスカウンタの値取得 (UI 表示用) int GetPerfCounter() const { return perf_counter; } @@ -227,9 +224,6 @@ class Scheduler : public Device Event sync_event { this }; Monitor monitor { this }; - - // 電源オフを UI に通知するためのコールバック - void (*poweroff_callback)() {}; }; extern const std::string TimeToStr(uint64 t);