Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
167f9f9a
Commit
167f9f9a
authored
Aug 24, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 25, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Write-strings warnings fix.
parent
8ebbc8c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
nsiface.idl
dlls/mshtml/nsiface.idl
+7
-7
No files found.
dlls/mshtml/nsiface.idl
View file @
167f9f9a
...
...
@@ -34,9 +34,9 @@ typedef REFIID nsIIDRef;
typedef
nsIIDRef
nsCIDRef
;
typedef
void
**
nsQIResult
;
typedef
LP
STR
ns
string
;
typedef
LP
CSTR
nsc
string
;
typedef
WCHAR
PRUnichar
;
typedef
LP
WSTR
ns
wstring
;
typedef
LP
CWSTR
nsc
wstring
;
typedef
ULONG
PRUint32
;
typedef
LONG
PRInt32
;
typedef
WORD
PRUint16
;
...
...
@@ -118,9 +118,9 @@ typedef nsISupports nsICommandParams;
interface nsIServiceManager : nsISupports
{
nsresult GetService(nsCIDRef aClass, nsIIDRef aIID, void **result);
nsresult GetServiceByContactID(nsstring aContactID, nsIIDRef aIID, void **result);
nsresult GetServiceByContactID(ns
c
string aContactID, nsIIDRef aIID, void **result);
nsresult IsServiceInstantiated(nsCIDRef aClass, nsIIDRef aIID, BOOL *_retval);
nsresult IsServiceInstantiatedByContractID(nsstring aContractID, nsIIDRef aIID, BOOL *_retval);
nsresult IsServiceInstantiatedByContractID(ns
c
string aContractID, nsIIDRef aIID, BOOL *_retval);
}
[
...
...
@@ -139,7 +139,7 @@ interface nsIFactory : nsISupports
]
interface nsIObserver : nsISupports
{
nsresult Observe(nsISupports *aSubject, ns
string aTopic, ns
wstring aData);
nsresult Observe(nsISupports *aSubject, ns
cstring aTopic, nsc
wstring aData);
}
[
...
...
@@ -149,10 +149,10 @@ interface nsIObserver : nsISupports
interface nsIComponentManager : nsISupports
{
nsresult GetClassObject(nsCIDRef aClass, nsIIDRef aIID, nsQIResult result);
nsresult GetClassObjectByContractID(nsstring aContractID, nsIIDRef aIID, nsQIResult result);
nsresult GetClassObjectByContractID(ns
c
string aContractID, nsIIDRef aIID, nsQIResult result);
nsresult CreateInstance(nsCIDRef aClass, nsISupports *aDelegate, nsIIDRef aIID,
nsQIResult result);
nsresult CreateInstanceByContractID(nsstring aContractID, nsISupports *aDelegate,
nsresult CreateInstanceByContractID(ns
c
string aContractID, nsISupports *aDelegate,
nsIIDRef aIID, nsQIResult result);
}
...
...
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