mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
Replace NSS with Pale Moon's
This commit is contained in:
parent
ff1e5e48bf
commit
8c2e376f94
2870 changed files with 1762232 additions and 1374220 deletions
|
|
@ -56,12 +56,25 @@ extern char *PK11URI_FormatURI(PLArenaPool *arena, PK11URI *uri);
|
|||
/* Destroy a PK11URI object. */
|
||||
extern void PK11URI_DestroyURI(PK11URI *uri);
|
||||
|
||||
/* Retrieve a path attribute with the given name. */
|
||||
/* Retrieve a path attribute with the given name. This function can be used only
|
||||
* when we can assume that the attribute value is a string (such as "label" or
|
||||
* "type"). If it can be a binary blob (such as "id"), use
|
||||
* PK11URI_GetPathAttributeItem.
|
||||
*/
|
||||
extern const char *PK11URI_GetPathAttribute(PK11URI *uri, const char *name);
|
||||
|
||||
/* Retrieve a query attribute with the given name. */
|
||||
/* Retrieve a query attribute with the given name. This function can be used
|
||||
* only when we can assume that the attribute value is a string (such as
|
||||
* "module-name"). If it can be a binary blob, use
|
||||
* PK11URI_GetQueryAttributeItem.*/
|
||||
extern const char *PK11URI_GetQueryAttribute(PK11URI *uri, const char *name);
|
||||
|
||||
/* Retrieve a path attribute with the given name as a SECItem. */
|
||||
extern const SECItem *PK11URI_GetPathAttributeItem(PK11URI *uri, const char *name);
|
||||
|
||||
/* Retrieve a query attribute with the given name as a SECItem. */
|
||||
extern const SECItem *PK11URI_GetQueryAttributeItem(PK11URI *uri, const char *name);
|
||||
|
||||
SEC_END_PROTOS
|
||||
|
||||
#endif /* _PKCS11URI_H_ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue