Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f80c3a72
Commit
f80c3a72
authored
Aug 23, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added nsIDOMNamedNodeMap interface.
parent
51aafd56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletion
+17
-1
nsiface.idl
dlls/mshtml/nsiface.idl
+17
-1
No files found.
dlls/mshtml/nsiface.idl
View file @
f80c3a72
...
@@ -110,7 +110,6 @@ typedef nsISupports nsIWidget;
...
@@ -110,7 +110,6 @@ typedef nsISupports nsIWidget;
typedef nsISupports nsIDOMBarProp;
typedef nsISupports nsIDOMBarProp;
typedef nsISupports nsIPrompt;
typedef nsISupports nsIPrompt;
typedef nsISupports nsIAuthPrompt;
typedef nsISupports nsIAuthPrompt;
typedef nsISupports nsIDOMNamedNodeMap;
typedef nsISupports nsIDOMDocumentType;
typedef nsISupports nsIDOMDocumentType;
typedef nsISupports nsIDOMDOMImplementation;
typedef nsISupports nsIDOMDOMImplementation;
typedef nsISupports nsIDOMCDATASection;
typedef nsISupports nsIDOMCDATASection;
...
@@ -647,6 +646,23 @@ interface nsIDOM3Node : nsISupports
...
@@ -647,6 +646,23 @@ interface nsIDOM3Node : nsISupports
[
[
object,
object,
uuid(a6cf907b-15b3-11d2-932e-00805f8add32),
local
]
interface nsIDOMNamedNodeMap : nsISupports
{
nsresult GetNamedItem(const nsAString *name, nsIDOMNode **_retval);
nsresult SetNamedItem(nsIDOMNode *arg, nsIDOMNode **_retval);
nsresult RemoveNamedItem(const nsAString *name, nsIDOMNode **_retval);
nsresult Item(PRUint32 index, nsIDOMNode **_retval);
nsresult GetLength(PRUint32 *aLength);
nsresult GetNamedItemNS(const nsAString *namespaceURI, const nsAString *localName, nsIDOMNode **_retval);
nsresult SetNamedItemNS(nsIDOMNode *arg, nsIDOMNode **_retval);
nsresult RemoveNamedItemNS(const nsAString *namespaceURI, const nsAString *localName, nsIDOMNode **_retval);
}
[
object,
uuid(a6cf907c-15b3-11d2-932e-00805f8add32),
uuid(a6cf907c-15b3-11d2-932e-00805f8add32),
local
local
]
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment