2019-07-08 13:52:41 +10:00
|
|
|
// Copyright 2019 miruka
|
|
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
|
2019-07-18 18:38:22 +10:00
|
|
|
"use strict"
|
|
|
|
|
2019-07-18 18:17:35 +10:00
|
|
|
function onExitRequested(exitCode) {
|
|
|
|
Qt.exit(exitCode)
|
2019-06-27 16:31:03 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
function onCoroutineDone(uuid, result) {
|
|
|
|
py.pendingCoroutines[uuid](result)
|
|
|
|
delete pendingCoroutines[uuid]
|
|
|
|
}
|