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
2f2b5732
Commit
2f2b5732
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Mark internal symbols with hidden visibility.
parent
20eefd8d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
28 deletions
+28
-28
capture.h
dlls/qcap/capture.h
+10
-10
qcap_main.h
dlls/qcap/qcap_main.h
+18
-18
No files found.
dlls/qcap/capture.h
View file @
2f2b5732
...
...
@@ -26,15 +26,15 @@
struct
_Capture
;
typedef
struct
_Capture
Capture
;
Capture
*
qcap_driver_init
(
IPin
*
,
USHORT
);
HRESULT
qcap_driver_destroy
(
Capture
*
);
HRESULT
qcap_driver_set_format
(
Capture
*
,
AM_MEDIA_TYPE
*
);
HRESULT
qcap_driver_get_format
(
const
Capture
*
,
AM_MEDIA_TYPE
**
);
HRESULT
qcap_driver_get_prop_range
(
Capture
*
,
VideoProcAmpProperty
,
LONG
*
,
LONG
*
,
LONG
*
,
LONG
*
,
LONG
*
);
HRESULT
qcap_driver_get_prop
(
Capture
*
,
VideoProcAmpProperty
,
LONG
*
,
LONG
*
);
HRESULT
qcap_driver_set_prop
(
Capture
*
,
VideoProcAmpProperty
,
LONG
,
LONG
);
HRESULT
qcap_driver_run
(
Capture
*
,
FILTER_STATE
*
);
HRESULT
qcap_driver_pause
(
Capture
*
,
FILTER_STATE
*
);
HRESULT
qcap_driver_stop
(
Capture
*
,
FILTER_STATE
*
);
Capture
*
qcap_driver_init
(
IPin
*
,
USHORT
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_destroy
(
Capture
*
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_set_format
(
Capture
*
,
AM_MEDIA_TYPE
*
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_get_format
(
const
Capture
*
,
AM_MEDIA_TYPE
**
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_get_prop_range
(
Capture
*
,
VideoProcAmpProperty
,
LONG
*
,
LONG
*
,
LONG
*
,
LONG
*
,
LONG
*
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_get_prop
(
Capture
*
,
VideoProcAmpProperty
,
LONG
*
,
LONG
*
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_set_prop
(
Capture
*
,
VideoProcAmpProperty
,
LONG
,
LONG
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_run
(
Capture
*
,
FILTER_STATE
*
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_pause
(
Capture
*
,
FILTER_STATE
*
)
DECLSPEC_HIDDEN
;
HRESULT
qcap_driver_stop
(
Capture
*
,
FILTER_STATE
*
)
DECLSPEC_HIDDEN
;
#endif
/* __QCAP_CAPTURE_H__ */
dlls/qcap/qcap_main.h
View file @
2f2b5732
...
...
@@ -22,22 +22,22 @@
#include "wine/strmbase.h"
extern
DWORD
ObjectRefCount
(
BOOL
increment
);
extern
IUnknown
*
WINAPI
QCAP_createAudioCaptureFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createAVICompressor
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createVFWCaptureFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createVFWCaptureFilterPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createAVImux
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createAVImuxPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createAVImuxPropertyPage1
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createFileWriter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createCaptureGraphBuilder2
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createInfinitePinTeeFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createSmartTeeFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
extern
IUnknown
*
WINAPI
QCAP_createAudioInputMixerPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
);
void
dump_AM_MEDIA_TYPE
(
const
AM_MEDIA_TYPE
*
pmt
);
extern
DWORD
ObjectRefCount
(
BOOL
increment
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAudioCaptureFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVICompressor
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createVFWCaptureFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createVFWCaptureFilterPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVImux
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVImuxPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVImuxPropertyPage1
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createFileWriter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createCaptureGraphBuilder2
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createInfinitePinTeeFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createSmartTeeFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAudioInputMixerPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
void
dump_AM_MEDIA_TYPE
(
const
AM_MEDIA_TYPE
*
pmt
)
DECLSPEC_HIDDEN
;
enum
YUV_Format
{
/* Last 2 numbers give the skip info, the smaller they are the better
...
...
@@ -55,7 +55,7 @@ enum YUV_Format {
UYYVYY
,
/* YUV411 linux style, perhaps YUV420 is YYUYYV? */
};
void
YUV_Init
(
void
);
void
YUV_To_RGB24
(
enum
YUV_Format
format
,
unsigned
char
*
target
,
const
unsigned
char
*
source
,
int
width
,
int
height
);
void
YUV_Init
(
void
)
DECLSPEC_HIDDEN
;
void
YUV_To_RGB24
(
enum
YUV_Format
format
,
unsigned
char
*
target
,
const
unsigned
char
*
source
,
int
width
,
int
height
)
DECLSPEC_HIDDEN
;
#endif
/* _QCAP_MAIN_H_DEFINED */
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