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
d826e089
Commit
d826e089
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msacm32: Mark internal symbols with hidden visibility.
parent
ba9f4e80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
29 deletions
+29
-29
wineacm.h
dlls/msacm32/wineacm.h
+29
-29
No files found.
dlls/msacm32/wineacm.h
View file @
d826e089
...
...
@@ -110,43 +110,43 @@ typedef struct _WINE_ACMNOTIFYWND
}
WINE_ACMNOTIFYWND
;
/* From internal.c */
extern
HANDLE
MSACM_hHeap
;
extern
PWINE_ACMDRIVERID
MSACM_pFirstACMDriverID
;
extern
HANDLE
MSACM_hHeap
DECLSPEC_HIDDEN
;
extern
PWINE_ACMDRIVERID
MSACM_pFirstACMDriverID
DECLSPEC_HIDDEN
;
extern
PWINE_ACMDRIVERID
MSACM_RegisterDriver
(
LPCWSTR
pszDriverAlias
,
LPCWSTR
pszFileName
,
PWINE_ACMLOCALDRIVER
pLocalDriver
);
extern
void
MSACM_RegisterAllDrivers
(
void
);
extern
PWINE_ACMDRIVERID
MSACM_UnregisterDriver
(
PWINE_ACMDRIVERID
p
);
extern
void
MSACM_UnregisterAllDrivers
(
void
);
extern
PWINE_ACMDRIVERID
MSACM_GetDriverID
(
HACMDRIVERID
hDriverID
);
extern
PWINE_ACMDRIVER
MSACM_GetDriver
(
HACMDRIVER
hDriver
);
extern
PWINE_ACMNOTIFYWND
MSACM_GetNotifyWnd
(
HACMDRIVERID
hDriver
);
extern
PWINE_ACMOBJ
MSACM_GetObj
(
HACMOBJ
hObj
,
DWORD
type
);
extern
MMRESULT
MSACM_Message
(
HACMDRIVER
,
UINT
,
LPARAM
,
LPARAM
);
extern
BOOL
MSACM_FindFormatTagInCache
(
const
WINE_ACMDRIVERID
*
,
DWORD
,
LPDWORD
);
extern
void
MSACM_RePositionDriver
(
PWINE_ACMDRIVERID
,
DWORD
);
extern
void
MSACM_WriteCurrentPriorities
(
void
);
extern
void
MSACM_BroadcastNotification
(
void
);
extern
void
MSACM_DisableNotifications
(
void
);
extern
void
MSACM_EnableNotifications
(
void
);
extern
PWINE_ACMNOTIFYWND
MSACM_RegisterNotificationWindow
(
HWND
hNotifyWnd
,
DWORD
dwNotifyMsg
);
extern
PWINE_ACMNOTIFYWND
MSACM_UnRegisterNotificationWindow
(
const
WINE_ACMNOTIFYWND
*
);
extern
PWINE_ACMDRIVERID
MSACM_RegisterDriverFromRegistry
(
LPCWSTR
pszRegEntry
);
extern
PWINE_ACMLOCALDRIVER
MSACM_RegisterLocalDriver
(
HMODULE
hModule
,
DRIVERPROC
lpDriverProc
);
extern
PWINE_ACMLOCALDRIVERINST
MSACM_OpenLocalDriver
(
PWINE_ACMLOCALDRIVER
,
LPARAM
);
extern
LRESULT
MSACM_CloseLocalDriver
(
PWINE_ACMLOCALDRIVERINST
);
PWINE_ACMLOCALDRIVER
pLocalDriver
)
DECLSPEC_HIDDEN
;
extern
void
MSACM_RegisterAllDrivers
(
void
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMDRIVERID
MSACM_UnregisterDriver
(
PWINE_ACMDRIVERID
p
)
DECLSPEC_HIDDEN
;
extern
void
MSACM_UnregisterAllDrivers
(
void
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMDRIVERID
MSACM_GetDriverID
(
HACMDRIVERID
hDriverID
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMDRIVER
MSACM_GetDriver
(
HACMDRIVER
hDriver
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMNOTIFYWND
MSACM_GetNotifyWnd
(
HACMDRIVERID
hDriver
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMOBJ
MSACM_GetObj
(
HACMOBJ
hObj
,
DWORD
type
)
DECLSPEC_HIDDEN
;
extern
MMRESULT
MSACM_Message
(
HACMDRIVER
,
UINT
,
LPARAM
,
LPARAM
)
DECLSPEC_HIDDEN
;
extern
BOOL
MSACM_FindFormatTagInCache
(
const
WINE_ACMDRIVERID
*
,
DWORD
,
LPDWORD
)
DECLSPEC_HIDDEN
;
extern
void
MSACM_RePositionDriver
(
PWINE_ACMDRIVERID
,
DWORD
)
DECLSPEC_HIDDEN
;
extern
void
MSACM_WriteCurrentPriorities
(
void
)
DECLSPEC_HIDDEN
;
extern
void
MSACM_BroadcastNotification
(
void
)
DECLSPEC_HIDDEN
;
extern
void
MSACM_DisableNotifications
(
void
)
DECLSPEC_HIDDEN
;
extern
void
MSACM_EnableNotifications
(
void
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMNOTIFYWND
MSACM_RegisterNotificationWindow
(
HWND
hNotifyWnd
,
DWORD
dwNotifyMsg
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMNOTIFYWND
MSACM_UnRegisterNotificationWindow
(
const
WINE_ACMNOTIFYWND
*
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMDRIVERID
MSACM_RegisterDriverFromRegistry
(
LPCWSTR
pszRegEntry
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMLOCALDRIVER
MSACM_RegisterLocalDriver
(
HMODULE
hModule
,
DRIVERPROC
lpDriverProc
)
DECLSPEC_HIDDEN
;
extern
PWINE_ACMLOCALDRIVERINST
MSACM_OpenLocalDriver
(
PWINE_ACMLOCALDRIVER
,
LPARAM
)
DECLSPEC_HIDDEN
;
extern
LRESULT
MSACM_CloseLocalDriver
(
PWINE_ACMLOCALDRIVERINST
)
DECLSPEC_HIDDEN
;
/*
extern PWINE_ACMLOCALDRIVER MSACM_GetLocalDriver(HACMDRIVER hDriver);
*/
/* From msacm32.c */
extern
HINSTANCE
MSACM_hInstance32
;
extern
HINSTANCE
MSACM_hInstance32
DECLSPEC_HIDDEN
;
/* From pcmcnvtr.c */
LRESULT
CALLBACK
PCM_DriverProc
(
DWORD_PTR
dwDevID
,
HDRVR
hDriv
,
UINT
wMsg
,
LPARAM
dwParam1
,
LPARAM
dwParam2
);
LPARAM
dwParam1
,
LPARAM
dwParam2
)
DECLSPEC_HIDDEN
;
/* Dialog box templates */
#include "msacmdlg.h"
...
...
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