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
cb432866
Commit
cb432866
authored
Jul 25, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Correctly declare pointers to delete/new functions.
parent
faa7eae8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
msvcp90.h
dlls/msvcp90/msvcp90.h
+2
-2
msvcp90_main.c
dlls/msvcp90/msvcp90_main.c
+2
-0
No files found.
dlls/msvcp90/msvcp90.h
View file @
cb432866
...
...
@@ -23,8 +23,8 @@ typedef unsigned char MSVCP_BOOL;
void
__cdecl
_invalid_parameter
(
const
wchar_t
*
,
const
wchar_t
*
,
const
wchar_t
*
,
unsigned
int
,
uintptr_t
);
void
*
(
__cdecl
*
MSVCRT_operator_new
)(
size_t
);
void
(
__cdecl
*
MSVCRT_operator_delete
)(
void
*
);
extern
void
*
(
__cdecl
*
MSVCRT_operator_new
)(
size_t
);
extern
void
(
__cdecl
*
MSVCRT_operator_delete
)(
void
*
);
/* Copied from dlls/msvcrt/cpp.c */
#ifdef __i386__
/* thiscall functions are i386-specific */
...
...
dlls/msvcp90/msvcp90_main.c
View file @
cb432866
...
...
@@ -28,6 +28,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcp90
);
void
*
(
__cdecl
*
MSVCRT_operator_new
)(
size_t
);
void
(
__cdecl
*
MSVCRT_operator_delete
)(
void
*
);
void
init_cxx_funcs
(
void
)
{
HMODULE
hmod
=
GetModuleHandleA
(
"msvcrt.dll"
);
...
...
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