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
7afdf5d9
Commit
7afdf5d9
authored
Oct 01, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make some variable declarations extern.
parent
730f0180
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
msxml_private.h
dlls/msxml3/msxml_private.h
+1
-1
cpsf.h
dlls/rpcrt4/cpsf.h
+2
-2
wined3d_private.h
dlls/wined3d/wined3d_private.h
+6
-6
No files found.
dlls/msxml3/msxml_private.h
View file @
7afdf5d9
...
...
@@ -223,7 +223,7 @@ static inline HRESULT return_null_ptr(void **p)
#endif
void
*
libxslt_handle
;
extern
void
*
libxslt_handle
;
#ifdef SONAME_LIBXSLT
# ifdef HAVE_LIBXSLT_PATTERN_H
# include <libxslt/pattern.h>
...
...
dlls/rpcrt4/cpsf.h
View file @
7afdf5d9
...
...
@@ -35,8 +35,8 @@ HRESULT CStdStubBuffer_Delegating_Construct(REFIID riid, LPUNKNOWN pUnkServer, P
const
MIDL_SERVER_INFO
*
CStdStubBuffer_GetServerInfo
(
IRpcStubBuffer
*
iface
);
const
IRpcStubBufferVtbl
CStdStubBuffer_Vtbl
;
const
IRpcStubBufferVtbl
CStdStubBuffer_Delegating_Vtbl
;
extern
const
IRpcStubBufferVtbl
CStdStubBuffer_Vtbl
;
extern
const
IRpcStubBufferVtbl
CStdStubBuffer_Delegating_Vtbl
;
BOOL
fill_delegated_proxy_table
(
IUnknownVtbl
*
vtbl
,
DWORD
num
);
HRESULT
create_proxy
(
REFIID
iid
,
IUnknown
*
pUnkOuter
,
IRpcProxyBuffer
**
pproxy
,
void
**
ppv
);
...
...
dlls/wined3d/wined3d_private.h
View file @
7afdf5d9
...
...
@@ -157,11 +157,11 @@ struct min_lookup
GLenum
mip
[
WINED3DTEXF_LINEAR
+
1
];
};
const
struct
min_lookup
minMipLookup
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
const
struct
min_lookup
minMipLookup_noFilter
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
const
struct
min_lookup
minMipLookup_noMip
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
const
GLenum
magLookup
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
const
GLenum
magLookup_noFilter
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
extern
const
struct
min_lookup
minMipLookup
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
extern
const
struct
min_lookup
minMipLookup_noFilter
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
extern
const
struct
min_lookup
minMipLookup_noMip
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
extern
const
GLenum
magLookup
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
extern
const
GLenum
magLookup_noFilter
[
WINED3DTEXF_LINEAR
+
1
]
DECLSPEC_HIDDEN
;
static
inline
GLenum
wined3d_gl_mag_filter
(
const
GLenum
mag_lookup
[],
WINED3DTEXTUREFILTERTYPE
mag_filter
)
{
...
...
@@ -2576,7 +2576,7 @@ struct IWineD3DSwapChainImpl
HWND
device_window
;
};
const
IWineD3DSwapChainVtbl
IWineGDISwapChain_Vtbl
DECLSPEC_HIDDEN
;
extern
const
IWineD3DSwapChainVtbl
IWineGDISwapChain_Vtbl
DECLSPEC_HIDDEN
;
void
x11_copy_to_screen
(
IWineD3DSwapChainImpl
*
This
,
const
RECT
*
rc
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
IWineD3DBaseSwapChainImpl_QueryInterface
(
IWineD3DSwapChain
*
iface
,
...
...
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