Use PRUint32 instead of unsigned long.

This commit is contained in:
brendan%mozilla.org 1999-07-17 03:27:10 +00:00
Родитель 77cc0a3b0d
Коммит 43d021029e
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -23,9 +23,9 @@
interface nsICollection : nsISupports
{
unsigned long Count();
nsISupports GetElementAt(in unsigned long index);
void SetElementAt(in unsigned long index, in nsISupports item);
PRUint32 Count();
nsISupports GetElementAt(in PRUint32 index);
void SetElementAt(in PRUint32 index, in nsISupports item);
void AppendElement(in nsISupports item);
void RemoveElement(in nsISupports item);