Add comment in the header for PK11_FindSlotsByAliases

This commit is contained in:
jpierre%netscape.com 2003-09-12 22:11:31 +00:00
Родитель 138160d974
Коммит 2d02a55087
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -138,6 +138,12 @@ SECStatus PK11_TokenRefresh(PK11SlotInfo *slot);
******************************************************************/
PK11SlotInfo *PK11_FindSlotByName(char *name);
PK11SlotInfo *PK11_FindSlotBySerial(char *serial);
/******************************************************************
* PK11_FindSlotsByAliases searches for a PK11SlotInfo using one or
* more criteria : dllName, slotName and tokenName . In addition, if
* presentOnly is set , only slots with a token inserted will be
* returned.
******************************************************************/
PK11SlotList *PK11_FindSlotsByAliases(const char *dllName,
const char* slotName, const char* tokenName, PRBool presentOnly);
PRBool PK11_IsReadOnly(PK11SlotInfo *slot);