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
455ef03c
Commit
455ef03c
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
devenum: Mark internal symbols as hidden.
parent
fa6e4f3a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
devenum_main.c
dlls/devenum/devenum_main.c
+2
-2
devenum_private.h
dlls/devenum/devenum_private.h
+7
-7
No files found.
dlls/devenum/devenum_main.c
View file @
455ef03c
...
...
@@ -25,8 +25,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
devenum
);
LONG
dll_refs
;
HINSTANCE
DEVENUM_hInstance
;
DECLSPEC_HIDDEN
LONG
dll_refs
;
DECLSPEC_HIDDEN
HINSTANCE
DEVENUM_hInstance
;
typedef
struct
{
...
...
dlls/devenum/devenum_private.h
View file @
455ef03c
...
...
@@ -47,7 +47,7 @@
/**********************************************************************
* Dll lifetime tracking declaration for devenum.dll
*/
extern
LONG
dll_refs
;
extern
LONG
dll_refs
DECLSPEC_HIDDEN
;
static
inline
void
DEVENUM_LockModule
(
void
)
{
InterlockedIncrement
(
&
dll_refs
);
}
static
inline
void
DEVENUM_UnlockModule
(
void
)
{
InterlockedDecrement
(
&
dll_refs
);
}
...
...
@@ -85,17 +85,17 @@ typedef struct
HKEY
hkey
;
}
MediaCatMoniker
;
MediaCatMoniker
*
DEVENUM_IMediaCatMoniker_Construct
(
void
);
HRESULT
DEVENUM_IEnumMoniker_Construct
(
HKEY
hkey
,
IEnumMoniker
**
ppEnumMoniker
);
MediaCatMoniker
*
DEVENUM_IMediaCatMoniker_Construct
(
void
)
DECLSPEC_HIDDEN
;
HRESULT
DEVENUM_IEnumMoniker_Construct
(
HKEY
hkey
,
IEnumMoniker
**
ppEnumMoniker
)
DECLSPEC_HIDDEN
;
extern
ClassFactoryImpl
DEVENUM_ClassFactory
;
extern
CreateDevEnumImpl
DEVENUM_CreateDevEnum
;
extern
ParseDisplayNameImpl
DEVENUM_ParseDisplayName
;
extern
ClassFactoryImpl
DEVENUM_ClassFactory
DECLSPEC_HIDDEN
;
extern
CreateDevEnumImpl
DEVENUM_CreateDevEnum
DECLSPEC_HIDDEN
;
extern
ParseDisplayNameImpl
DEVENUM_ParseDisplayName
DECLSPEC_HIDDEN
;
/**********************************************************************
* Private helper function to get AM filter category key location
*/
HRESULT
DEVENUM_GetCategoryKey
(
REFCLSID
clsidDeviceClass
,
HKEY
*
pBaseKey
,
WCHAR
*
wszRegKeyName
,
UINT
maxLen
);
HRESULT
DEVENUM_GetCategoryKey
(
REFCLSID
clsidDeviceClass
,
HKEY
*
pBaseKey
,
WCHAR
*
wszRegKeyName
,
UINT
maxLen
)
DECLSPEC_HIDDEN
;
/**********************************************************************
* Global string constant declarations
...
...
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