mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
612 B
JavaScript
20 lines
612 B
JavaScript
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
function install(data, reason) {
|
|
Services.prefs.setIntPref("bootstraptest.installed_version", 3);
|
|
}
|
|
|
|
function startup(data, reason) {
|
|
Services.prefs.setIntPref("bootstraptest.active_version", 3);
|
|
Services.prefs.setIntPref("bootstraptest.startup_reason", reason);
|
|
}
|
|
|
|
function shutdown(data, reason) {
|
|
Services.prefs.setIntPref("bootstraptest.active_version", 0);
|
|
Services.prefs.setIntPref("bootstraptest.shutdown_reason", reason);
|
|
}
|
|
|
|
function uninstall(data, reason) {
|
|
Services.prefs.setIntPref("bootstraptest.installed_version", 0);
|
|
}
|