canonicalized method names to proper XPIDL interCaps style. a=r=(not built)

This commit is contained in:
dmose%mozilla.org 2000-06-17 03:15:23 +00:00
parent 59e76caefe
commit 3947c09017

View File

@ -46,25 +46,25 @@ interface nsILDAPMessageListener : nsISupports
// return value = LDAP_RES_SEARCH_ENTRY
//
void OnLDAPSearchEntry(in nsILDAPMessage aMessage);
void onLDAPSearchEntry(in nsILDAPMessage aMessage);
// return value = LDAP_RES_SEARCH_REFERENCE
//
void OnLDAPSearchReference(in nsILDAPMessage aMessage);
void onLDAPSearchReference(in nsILDAPMessage aMessage);
// return value = LDAP_RES_SEARCH_RESULT
//
void OnLDAPSearchResult(in nsILDAPMessage aMessage);
void onLDAPSearchResult(in nsILDAPMessage aMessage);
// return value of -1
//
// XXX should have an arg?
//
void OnLDAPError();
void onLDAPError();
// return value of 0
//
void OnLDAPTimeout();
void onLDAPTimeout();
// XXX need to add other possible ldap_result return values
};