Bug 362967, export SECMOD_DeleteModuleEx

r=rrelyea, r=wtchang
This commit is contained in:
kaie%kuix.de 2006-12-06 17:56:04 +00:00
Родитель aa54709697
Коммит 7d28513beb
3 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -892,6 +892,7 @@ SECKEY_SignatureLen;
PK11_GetAllSlotsForCert;
SECKEY_ECParamsToKeySize;
SECKEY_ECParamsToBasePointOrderLen;
SECMOD_DeleteModuleEx;
VFY_CreateContextDirect;
VFY_CreateContextWithAlgorithmID;
VFY_VerifyDataDirect;

Просмотреть файл

@ -120,6 +120,10 @@ extern void SECMOD_ReleaseReadLock(SECMODListLock *);
/* Operate on modules by name */
extern SECMODModule *SECMOD_FindModule(const char *name);
extern SECStatus SECMOD_DeleteModule(const char *name, int *type);
extern SECStatus SECMOD_DeleteModuleEx(const char * name,
SECMODModule *mod,
int *type,
PRBool permdb);
extern SECStatus SECMOD_DeleteInternalModule(const char *name);
extern PRBool SECMOD_CanDeleteInternalModule(void);
extern SECStatus SECMOD_AddNewModule(const char* moduleName,

Просмотреть файл

@ -80,7 +80,6 @@ extern SECMODModuleList *SECMOD_NewModuleListElement(void);
extern SECMODModuleList *SECMOD_DestroyModuleListElement(SECMODModuleList *);
extern void SECMOD_DestroyModuleList(SECMODModuleList *);
extern SECStatus SECMOD_AddModule(SECMODModule *newModule);
SECStatus SECMOD_DeleteModuleEx(const char * name, SECMODModule *mod, int *type, PRBool permdb);
extern unsigned long SECMOD_InternaltoPubMechFlags(unsigned long internalFlags);
extern unsigned long SECMOD_InternaltoPubCipherFlags(unsigned long internalFlags);