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