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
b4af43db
Commit
b4af43db
authored
Apr 21, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
Apr 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Mark internal symbols with visibility hidden.
parent
b5cbe08b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
21 deletions
+21
-21
winemm.h
dlls/winmm/winemm.h
+21
-21
No files found.
dlls/winmm/winemm.h
View file @
b4af43db
...
...
@@ -127,34 +127,34 @@ typedef struct tagWINE_MMIO {
/* function prototypes */
LPWINE_DRIVER
DRIVER_FindFromHDrvr
(
HDRVR
hDrvr
);
BOOL
DRIVER_GetLibName
(
LPCWSTR
keyName
,
LPCWSTR
sectName
,
LPWSTR
buf
,
int
sz
);
LPWINE_DRIVER
DRIVER_TryOpenDriver32
(
LPCWSTR
fn
,
LPARAM
lParam2
);
void
DRIVER_UnloadAll
(
void
);
LPWINE_DRIVER
DRIVER_FindFromHDrvr
(
HDRVR
hDrvr
)
DECLSPEC_HIDDEN
;
BOOL
DRIVER_GetLibName
(
LPCWSTR
keyName
,
LPCWSTR
sectName
,
LPWSTR
buf
,
int
sz
)
DECLSPEC_HIDDEN
;
LPWINE_DRIVER
DRIVER_TryOpenDriver32
(
LPCWSTR
fn
,
LPARAM
lParam2
)
DECLSPEC_HIDDEN
;
void
DRIVER_UnloadAll
(
void
)
DECLSPEC_HIDDEN
;
void
MMDRV_Exit
(
void
);
UINT
MMDRV_GetNum
(
UINT
);
void
MMDRV_Exit
(
void
)
DECLSPEC_HIDDEN
;
UINT
MMDRV_GetNum
(
UINT
)
DECLSPEC_HIDDEN
;
LPWINE_MLD
MMDRV_Alloc
(
UINT
size
,
UINT
type
,
LPHANDLE
hndl
,
DWORD
*
dwFlags
,
DWORD_PTR
*
dwCallback
,
DWORD_PTR
*
dwInstance
);
void
MMDRV_Free
(
HANDLE
hndl
,
LPWINE_MLD
mld
);
DWORD
MMDRV_Open
(
LPWINE_MLD
mld
,
UINT
wMsg
,
DWORD_PTR
dwParam1
,
DWORD
dwParam2
);
DWORD
MMDRV_Close
(
LPWINE_MLD
mld
,
UINT
wMsg
);
LPWINE_MLD
MMDRV_Get
(
HANDLE
hndl
,
UINT
type
,
BOOL
bCanBeID
);
LPWINE_MLD
MMDRV_GetRelated
(
HANDLE
hndl
,
UINT
srcType
,
BOOL
bSrcCanBeID
,
UINT
dstTyped
);
DWORD
MMDRV_Message
(
LPWINE_MLD
mld
,
UINT
wMsg
,
DWORD_PTR
dwParam1
,
DWORD_PTR
dwParam2
);
UINT
MMDRV_PhysicalFeatures
(
LPWINE_MLD
mld
,
UINT
uMsg
,
DWORD_PTR
dwParam1
,
DWORD_PTR
dwParam2
);
DWORD_PTR
*
dwCallback
,
DWORD_PTR
*
dwInstance
)
DECLSPEC_HIDDEN
;
void
MMDRV_Free
(
HANDLE
hndl
,
LPWINE_MLD
mld
)
DECLSPEC_HIDDEN
;
DWORD
MMDRV_Open
(
LPWINE_MLD
mld
,
UINT
wMsg
,
DWORD_PTR
dwParam1
,
DWORD
dwParam2
)
DECLSPEC_HIDDEN
;
DWORD
MMDRV_Close
(
LPWINE_MLD
mld
,
UINT
wMsg
)
DECLSPEC_HIDDEN
;
LPWINE_MLD
MMDRV_Get
(
HANDLE
hndl
,
UINT
type
,
BOOL
bCanBeID
)
DECLSPEC_HIDDEN
;
LPWINE_MLD
MMDRV_GetRelated
(
HANDLE
hndl
,
UINT
srcType
,
BOOL
bSrcCanBeID
,
UINT
dstTyped
)
DECLSPEC_HIDDEN
;
DWORD
MMDRV_Message
(
LPWINE_MLD
mld
,
UINT
wMsg
,
DWORD_PTR
dwParam1
,
DWORD_PTR
dwParam2
)
DECLSPEC_HIDDEN
;
UINT
MMDRV_PhysicalFeatures
(
LPWINE_MLD
mld
,
UINT
uMsg
,
DWORD_PTR
dwParam1
,
DWORD_PTR
dwParam2
)
DECLSPEC_HIDDEN
;
DWORD
MCI_SendCommand
(
UINT
wDevID
,
UINT16
wMsg
,
DWORD_PTR
dwParam1
,
DWORD_PTR
dwParam2
);
DWORD
MCI_SendCommand
(
UINT
wDevID
,
UINT16
wMsg
,
DWORD_PTR
dwParam1
,
DWORD_PTR
dwParam2
)
DECLSPEC_HIDDEN
;
const
char
*
WINMM_ErrorToString
(
MMRESULT
error
);
const
char
*
WINMM_ErrorToString
(
MMRESULT
error
)
DECLSPEC_HIDDEN
;
void
TIME_MMTimeStop
(
void
);
void
TIME_MMTimeStop
(
void
)
DECLSPEC_HIDDEN
;
/* Global variables */
extern
CRITICAL_SECTION
WINMM_cs
;
extern
HINSTANCE
hWinMM32Instance
;
extern
HANDLE
psLastEvent
;
extern
HANDLE
psStopEvent
;
extern
CRITICAL_SECTION
WINMM_cs
DECLSPEC_HIDDEN
;
extern
HINSTANCE
hWinMM32Instance
DECLSPEC_HIDDEN
;
extern
HANDLE
psLastEvent
DECLSPEC_HIDDEN
;
extern
HANDLE
psStopEvent
DECLSPEC_HIDDEN
;
/* GetDriverFlags() returned bits is not documented (nor the call itself)
* Here are Wine only definitions of the bits
...
...
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