mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
123 lines
4.7 KiB
C
123 lines
4.7 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
#include "structs.h"
|
|
|
|
/* Public */
|
|
typedef void (*SoftUpdateCompletionFunction) (int result, void * closure);
|
|
|
|
#ifdef XP_WIN16
|
|
extern XP_Bool utilityScheduled = FALSE;
|
|
#endif
|
|
|
|
XP_BEGIN_PROTOS
|
|
|
|
/* Flags for start software update */
|
|
/* See trigger.java for docs */
|
|
#define FORCE_INSTALL 1
|
|
#define SILENT_INSTALL 2
|
|
|
|
/* Initialize Software Update */
|
|
extern int SU_Startup(void);
|
|
|
|
/* Cleanup Software Update */
|
|
extern int SU_Shutdown(void);
|
|
|
|
/* StartSoftwareUpdate
|
|
* performs the update, and calls the callback function with the
|
|
*/
|
|
extern XP_Bool SU_StartSoftwareUpdate(MWContext * context,
|
|
const char * url,
|
|
const char * name,
|
|
SoftUpdateCompletionFunction f,
|
|
void * completionClosure,
|
|
int32 flags); /* FORCE_INSTALL, SILENT_INSTALL */
|
|
|
|
/* SU_NewStream
|
|
* Stream decoder for software updates
|
|
*/
|
|
extern NET_StreamClass * SU_NewStream (int format_out, void * registration,
|
|
URL_Struct * request, MWContext *context);
|
|
|
|
extern int32 SU_PatchFile( char* srcfile, XP_FileType srctype,
|
|
char* patchfile, XP_FileType patchtype,
|
|
char* targfile, XP_FileType targtype );
|
|
|
|
extern int32 SU_Uninstall(char *regPackageName);
|
|
|
|
extern XP_Bool SU_IsUpdateEnabled(void);
|
|
|
|
/* This method enumerates through the packages which can be uninstalled
|
|
* by finding the packages in the shared uninstall list and the packages
|
|
* in the current communicator uninstall list.
|
|
* When SU_EnumUninstall is first called, *context should be null. Context
|
|
* keeps track of which list we are traversing, either shared or the current
|
|
* communicator list. If we are able to enumerate all packages without any
|
|
* errors, context is freed in the routine, otherwise you must XP_FREE it yourself.
|
|
* packageName - user readable package name (if this is blank you could use
|
|
* regPackageName as a substitute).
|
|
* len1 - sizeof(packageName)
|
|
* regPackageName - name of package name installed. This name is unique
|
|
* and is what should be passed to SU_Uninstall()
|
|
* len2 - sizeof(regPackageName)
|
|
*/
|
|
extern int32 SU_EnumUninstall(void** context, char* packageName,
|
|
int32 len1, char*regPackageName, int32 len2);
|
|
|
|
#ifdef XP_UNIX
|
|
#define AUTOUPDATE_ENABLE_PREF "autoupdate.enabled_on_unix"
|
|
#else
|
|
#define AUTOUPDATE_ENABLE_PREF "autoupdate.enabled"
|
|
#endif
|
|
|
|
#define AUTOUPDATE_CONFIRM_PREF "autoupdate.confirm_install"
|
|
#define CHARSET_HEADER "Charset"
|
|
#define CONTENT_ENCODING_HEADER "Content-encoding"
|
|
#define INSTALLER_HEADER "Install-Script"
|
|
#define MOCHA_CONTEXT_PREFIX "autoinstall:"
|
|
#define REG_SOFTUPDT_DIR "Netscape/Communicator/SoftwareUpdate/"
|
|
#define LAST_REGPACK_TIME "LastRegPackTime"
|
|
|
|
/* error codes */
|
|
#define su_ErrInvalidArgs -1
|
|
#define su_ErrUnknownInstaller -2
|
|
#define su_ErrInternalError -3
|
|
#define su_ErrBadScript -4
|
|
#define su_JarError -5
|
|
#define su_DiskSpaceError -6
|
|
XP_END_PROTOS
|