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