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
b48d9590
Commit
b48d9590
authored
Dec 15, 2005
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fix handling Gecko strings.
parent
054164d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
12 deletions
+15
-12
nsembed.c
dlls/mshtml/nsembed.c
+10
-9
nsiface.idl
dlls/mshtml/nsiface.idl
+5
-3
No files found.
dlls/mshtml/nsembed.c
View file @
b48d9590
...
...
@@ -44,22 +44,23 @@ WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
#define PR_UINT32_MAX 0xffffffff
typedef
struct
nsACString
{
struct
nsStringContainer
{
void
*
v
;
void
*
d1
;
PRUint32
d2
;
void
*
d3
;
}
nsString
;
};
static
nsresult
(
*
NS_InitXPCOM2
)(
nsIServiceManager
**
,
void
*
,
void
*
);
static
nsresult
(
*
NS_ShutdownXPCOM
)(
nsIServiceManager
*
);
static
nsresult
(
*
NS_GetComponentRegistrar
)(
nsIComponentRegistrar
**
);
static
nsresult
(
*
NS_StringContainerInit
)(
nsString
*
);
static
nsresult
(
*
NS_CStringContainerInit
)(
ns
ACString
*
);
static
nsresult
(
*
NS_StringContainerFinish
)(
nsString
*
);
static
nsresult
(
*
NS_CStringContainerFinish
)(
ns
ACString
*
);
static
nsresult
(
*
NS_StringSetData
)(
nsString
*
,
const
PRUnichar
*
,
PRUint32
);
static
nsresult
(
*
NS_StringContainerInit
)(
nsString
Container
*
);
static
nsresult
(
*
NS_CStringContainerInit
)(
ns
CStringContainer
*
);
static
nsresult
(
*
NS_StringContainerFinish
)(
nsString
Container
*
);
static
nsresult
(
*
NS_CStringContainerFinish
)(
ns
CStringContainer
*
);
static
nsresult
(
*
NS_StringSetData
)(
ns
A
String
*
,
const
PRUnichar
*
,
PRUint32
);
static
nsresult
(
*
NS_CStringSetData
)(
nsACString
*
,
const
char
*
,
PRUint32
);
static
nsresult
(
*
NS_NewLocalFile
)(
const
nsString
*
,
PRBool
,
nsIFile
**
);
static
nsresult
(
*
NS_NewLocalFile
)(
const
ns
A
String
*
,
PRBool
,
nsIFile
**
);
static
PRUint32
(
*
NS_CStringGetData
)(
nsACString
*
,
const
char
**
,
PRBool
*
);
static
HINSTANCE
hXPCOM
=
NULL
;
...
...
@@ -245,7 +246,7 @@ static BOOL load_gecko()
nsresult
nsres
;
nsIObserver
*
pStartNotif
;
nsIComponentRegistrar
*
registrar
=
NULL
;
nsString
path
;
ns
A
String
path
;
nsIFile
*
gre_dir
;
PRUnichar
gre_path
[
MAX_PATH
];
WCHAR
path_env
[
MAX_PATH
];
...
...
dlls/mshtml/nsiface.idl
View file @
b48d9590
...
...
@@ -44,11 +44,13 @@ typedef BYTE PRUint8;
typedef
BOOL
PRBool
;
typedef
LARGE_INTEGER
PRInt64
;
typedef
ULARGE_INTEGER
PRUint64
;
typedef
int
nsAString
;
typedef
struct
nsACString
nsACString
;
typedef
PRUint64
DOMTimeStamp
;
typedef
struct
nsStringContainer
nsStringContainer
;
typedef
nsStringContainer
nsCStringContainer
;
typedef
nsStringContainer
nsACString
;
typedef
nsStringContainer
nsAString
;
interface
nsIWebBrowserChrome
;
[
...
...
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