mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
821 B
Plaintext
21 lines
821 B
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsIIccService.idl"
|
|
|
|
%{C++
|
|
#define GONK_ICC_SERVICE_CONTRACTID \
|
|
"@mozilla.org/icc/gonkiccservice;1"
|
|
%}
|
|
|
|
[scriptable, uuid(cdcdd800-ef24-11e4-99e7-1f0f5f2576c5)]
|
|
interface nsIGonkIccService : nsIIccService
|
|
{
|
|
void notifyStkCommand(in unsigned long aServiceId, in nsIStkProactiveCmd aStkcommand);
|
|
void notifyStkSessionEnd(in unsigned long aServiceId);
|
|
void notifyCardStateChanged(in unsigned long aServiceId, in unsigned long aCardState);
|
|
void notifyIccInfoChanged(in unsigned long aServiceId, in jsval aIccInfo);
|
|
void notifyImsiChanged(in unsigned long aServiceId, in DOMString aImsi);
|
|
};
|