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
7f9a5fac
Commit
7f9a5fac
authored
Nov 17, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Remove nscstring and nscwstring typedefs.
parent
2f853fad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
nsiface.idl
dlls/mshtml/nsiface.idl
+5
-7
No files found.
dlls/mshtml/nsiface.idl
View file @
7f9a5fac
...
...
@@ -34,9 +34,7 @@ typedef REFIID nsIIDRef;
typedef
nsIIDRef
nsCIDRef
;
typedef
void
**
nsQIResult
;
typedef
LPCSTR
nscstring
;
typedef
WCHAR
PRUnichar
;
typedef
LPCWSTR
nscwstring
;
typedef
ULONG
PRUint32
;
typedef
LONG
PRInt32
;
typedef
WORD
PRUint16
;
...
...
@@ -120,9 +118,9 @@ typedef nsISupports nsIDOMCSSRule;
interface nsIServiceManager : nsISupports
{
nsresult GetService(nsCIDRef aClass, nsIIDRef aIID, void **result);
nsresult GetServiceByContactID(
nscstring
aContactID, nsIIDRef aIID, void **result);
nsresult GetServiceByContactID(
const char *
aContactID, nsIIDRef aIID, void **result);
nsresult IsServiceInstantiated(nsCIDRef aClass, nsIIDRef aIID, BOOL *_retval);
nsresult IsServiceInstantiatedByContractID(
nscstring
aContractID, nsIIDRef aIID, BOOL *_retval);
nsresult IsServiceInstantiatedByContractID(
const char *
aContractID, nsIIDRef aIID, BOOL *_retval);
}
[
...
...
@@ -141,7 +139,7 @@ interface nsIFactory : nsISupports
]
interface nsIObserver : nsISupports
{
nsresult Observe(nsISupports *aSubject,
nscstring aTopic, nscwstring
aData);
nsresult Observe(nsISupports *aSubject,
const char *aTopic, const PRUnichar *
aData);
}
[
...
...
@@ -151,10 +149,10 @@ interface nsIObserver : nsISupports
interface nsIComponentManager : nsISupports
{
nsresult GetClassObject(nsCIDRef aClass, nsIIDRef aIID, nsQIResult result);
nsresult GetClassObjectByContractID(
nscstring
aContractID, nsIIDRef aIID, nsQIResult result);
nsresult GetClassObjectByContractID(
const char *
aContractID, nsIIDRef aIID, nsQIResult result);
nsresult CreateInstance(nsCIDRef aClass, nsISupports *aDelegate, nsIIDRef aIID,
nsQIResult result);
nsresult CreateInstanceByContractID(
nscstring
aContractID, nsISupports *aDelegate,
nsresult CreateInstanceByContractID(
const char *
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