mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 21:52:44 +00:00
add nsIEnumerator interface, and fix nsICollection interface to use long not int
This commit is contained in:
parent
51d9e33467
commit
c5c155b7b5
@ -22,7 +22,7 @@
|
|||||||
[uuid(83b6019c-cbc4-11d2-8cca-0060b0fc14a3)]
|
[uuid(83b6019c-cbc4-11d2-8cca-0060b0fc14a3)]
|
||||||
interface nsICollection : nsISupports {
|
interface nsICollection : nsISupports {
|
||||||
|
|
||||||
readonly attribute unsigned int count; // XXX wrong
|
readonly attribute unsigned long count; // XXX wrong
|
||||||
|
|
||||||
void AppendElement(in nsISupports element);
|
void AppendElement(in nsISupports element);
|
||||||
void RemoveElement(in nsISupports element);
|
void RemoveElement(in nsISupports element);
|
||||||
|
@ -30,6 +30,7 @@ IDLSRCS = \
|
|||||||
nsIBaseStream.idl \
|
nsIBaseStream.idl \
|
||||||
nsIInputStream.idl \
|
nsIInputStream.idl \
|
||||||
nsICollection.idl \
|
nsICollection.idl \
|
||||||
|
nsIEnumerator.idl \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
# for testing purposes
|
# for testing purposes
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
[uuid(83b6019c-cbc4-11d2-8cca-0060b0fc14a3)]
|
[uuid(83b6019c-cbc4-11d2-8cca-0060b0fc14a3)]
|
||||||
interface nsICollection : nsISupports {
|
interface nsICollection : nsISupports {
|
||||||
|
|
||||||
readonly attribute unsigned int count; // XXX wrong
|
readonly attribute unsigned long count; // XXX wrong
|
||||||
|
|
||||||
void AppendElement(in nsISupports element);
|
void AppendElement(in nsISupports element);
|
||||||
void RemoveElement(in nsISupports element);
|
void RemoveElement(in nsISupports element);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user