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
ccc66af6
Commit
ccc66af6
authored
Oct 21, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hlink: Don't use WINAPI for internal functions.
parent
c43d4450
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
browse_ctx.c
dlls/hlink/browse_ctx.c
+1
-1
hlink_main.c
dlls/hlink/hlink_main.c
+1
-1
hlink_private.h
dlls/hlink/hlink_private.h
+2
-2
link.c
dlls/hlink/link.c
+1
-1
No files found.
dlls/hlink/browse_ctx.c
View file @
ccc66af6
...
@@ -40,7 +40,7 @@ static inline HlinkBCImpl *impl_from_IHlinkBrowseContext(IHlinkBrowseContext *if
...
@@ -40,7 +40,7 @@ static inline HlinkBCImpl *impl_from_IHlinkBrowseContext(IHlinkBrowseContext *if
}
}
HRESULT
WINAPI
HLinkBrowseContext_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
HRESULT
HLinkBrowseContext_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppv
)
LPVOID
*
ppv
)
{
{
HlinkBCImpl
*
hl
;
HlinkBCImpl
*
hl
;
...
...
dlls/hlink/hlink_main.c
View file @
ccc66af6
...
@@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(hlink);
...
@@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(hlink);
static
HINSTANCE
instance
;
static
HINSTANCE
instance
;
typedef
HRESULT
(
CALLBACK
*
LPFNCREATEINSTANCE
)(
IUnknown
*
,
REFIID
,
LPVOID
*
);
typedef
HRESULT
(
*
LPFNCREATEINSTANCE
)(
IUnknown
*
,
REFIID
,
LPVOID
*
);
typedef
struct
typedef
struct
{
{
...
...
dlls/hlink/hlink_private.h
View file @
ccc66af6
...
@@ -29,8 +29,8 @@
...
@@ -29,8 +29,8 @@
#include "wine/unicode.h"
#include "wine/unicode.h"
extern
HRESULT
WINAPI
HLink_Constructor
(
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
HLink_Constructor
(
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
HLinkBrowseContext_Constructor
(
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
HLinkBrowseContext_Constructor
(
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
static
inline
void
*
heap_alloc
(
size_t
len
)
static
inline
void
*
heap_alloc
(
size_t
len
)
{
{
...
...
dlls/hlink/link.c
View file @
ccc66af6
...
@@ -915,7 +915,7 @@ static const IPersistStreamVtbl psvt =
...
@@ -915,7 +915,7 @@ static const IPersistStreamVtbl psvt =
IPersistStream_fnGetSizeMax
,
IPersistStream_fnGetSizeMax
,
};
};
HRESULT
WINAPI
HLink_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
void
**
ppv
)
HRESULT
HLink_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
void
**
ppv
)
{
{
HlinkImpl
*
hl
;
HlinkImpl
*
hl
;
...
...
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