install.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #ifndef PK11INSTALL_H
  34. #define PK11INSTALL_H
  35. #include <prio.h>
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. typedef void (*Pk11Install_ErrorHandler)(char *);
  40. typedef enum {
  41. PK11_INSTALL_NO_ERROR=0,
  42. PK11_INSTALL_DIR_DOESNT_EXIST,
  43. PK11_INSTALL_FILE_DOESNT_EXIST,
  44. PK11_INSTALL_FILE_NOT_READABLE,
  45. PK11_INSTALL_ERROR_STRING,
  46. PK11_INSTALL_JAR_ERROR,
  47. PK11_INSTALL_NO_INSTALLER_SCRIPT,
  48. PK11_INSTALL_DELETE_TEMP_FILE,
  49. PK11_INSTALL_OPEN_SCRIPT_FILE,
  50. PK11_INSTALL_SCRIPT_PARSE,
  51. PK11_INSTALL_SEMANTIC,
  52. PK11_INSTALL_SYSINFO,
  53. PK11_INSTALL_NO_PLATFORM,
  54. PK11_INSTALL_BOGUS_REL_DIR,
  55. PK11_INSTALL_NO_MOD_FILE,
  56. PK11_INSTALL_ADD_MODULE,
  57. PK11_INSTALL_JAR_EXTRACT,
  58. PK11_INSTALL_DIR_NOT_WRITEABLE,
  59. PK11_INSTALL_CREATE_DIR,
  60. PK11_INSTALL_REMOVE_DIR,
  61. PK11_INSTALL_EXEC_FILE,
  62. PK11_INSTALL_WAIT_PROCESS,
  63. PK11_INSTALL_PROC_ERROR,
  64. PK11_INSTALL_USER_ABORT,
  65. PK11_INSTALL_UNSPECIFIED
  66. } Pk11Install_Error;
  67. #define PK11_INSTALL_SUCCESS PK11_INSTALL_NO_ERROR
  68. /**************************************************************************
  69.  *
  70.  * P k 1 1 I n s t a l l _ I n i t
  71.  *
  72.  * Does initialization that otherwise would be done on the fly.  Only
  73.  * needs to be called by multithreaded apps, before they make any calls
  74.  * to this library.
  75.  */
  76. void 
  77. Pk11Install_Init();
  78. /**************************************************************************
  79.  *
  80.  * P k 1 1 I n s t a l l _ S e t E r r o r H a n d l e r
  81.  *
  82.  * Sets the error handler to be used by the library.  Returns the current
  83.  * error handler function.
  84.  */
  85. Pk11Install_ErrorHandler
  86. Pk11Install_SetErrorHandler(Pk11Install_ErrorHandler handler);
  87. /**************************************************************************
  88.  *
  89.  * P k 1 1 I n s t a l l _ R e l e a s e
  90.  *
  91.  * Releases static data structures used by the library.  Don't use the
  92.  * library after calling this, unless you call Pk11Install_Init()
  93.  * first.  This function doesn't have to be called at all unless you're
  94.  * really anal about freeing memory before your program exits.
  95.  */
  96. void 
  97. Pk11Install_Release();
  98. /*************************************************************************
  99.  *
  100.  * P k 1 1 I n s t a l l _ D o I n s t a l l
  101.  *
  102.  * jarFile is the path of a JAR in the PKCS #11 module JAR format.
  103.  * installDir is the directory relative to which files will be
  104.  *   installed.
  105.  * feedback is a file descriptor to which to write informative (not error)
  106.  * status messages: what files are being installed, what modules are being
  107.  * installed.  If feedback==NULL, no messages will be displayed.
  108.  * If force != 0, interactive prompts will be suppressed.
  109.  * If noverify == PR_TRUE, signatures won't be checked on the JAR file.
  110.  */
  111. Pk11Install_Error
  112. Pk11Install_DoInstall(char *jarFile, const char *installDir,
  113. const char *tempDir, PRFileDesc *feedback, short force,
  114. PRBool noverify);
  115. #ifdef __cplusplus
  116. }
  117. #endif
  118. #endif /*PK11INSTALL_H*/