include: Add local to interfaces or functions that take a void * parameter and so aren't designed to work remotely.
This commit is contained in:
parent
0120c1a582
commit
b4efe919cc
|
@ -61,7 +61,8 @@ cpp_quote("#define AMDSS_PRIMARY (AMDDS_DCIPS | AMDDS_PS)")
|
|||
|
||||
[
|
||||
object,
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IDirectDrawVideo : IUnknown
|
||||
{
|
||||
|
@ -85,7 +86,8 @@ interface IDirectDrawVideo : IUnknown
|
|||
|
||||
[
|
||||
object,
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IQualProp : IUnknown
|
||||
{
|
||||
|
@ -124,7 +126,8 @@ interface IFullScreenVideo : IUnknown
|
|||
|
||||
[
|
||||
object,
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IFullScreenVideoEx : IFullScreenVideo
|
||||
{
|
||||
|
@ -137,7 +140,8 @@ interface IFullScreenVideoEx : IFullScreenVideo
|
|||
|
||||
[
|
||||
object,
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IBaseVideoMixer : IUnknown
|
||||
{
|
||||
|
|
|
@ -958,7 +958,8 @@ cpp_quote("#define KSPROPERTY_SUPPORT_SET 2")
|
|||
[
|
||||
object,
|
||||
uuid(31efac30-515c-11d0-a9aa-00aa0061be93),
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IKsPropertySet : IUnknown
|
||||
{
|
||||
|
|
|
@ -185,7 +185,8 @@ interface IEnumRegisterWordW : IUnknown
|
|||
[
|
||||
object,
|
||||
uuid(09b5eab0-f997-11d1-93d4-0060b067b86e),
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IEnumInputContext : IUnknown
|
||||
{
|
||||
|
@ -206,7 +207,8 @@ interface IEnumInputContext : IUnknown
|
|||
[
|
||||
object,
|
||||
uuid(08c0e040-62d1-11d1-9326-0060b067b86e),
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IActiveIMMApp : IUnknown
|
||||
{
|
||||
|
|
|
@ -716,7 +716,8 @@ cpp_quote("#define IShellLink WINELIB_NAME_AW(IShellLink)")
|
|||
[
|
||||
object,
|
||||
uuid(000214e8-0000-0000-c000-000000000046),
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IShellExtInit : IUnknown
|
||||
{
|
||||
|
@ -869,7 +870,8 @@ cpp_quote("#define CDBOSC_STATECHANGE 0x00000004")
|
|||
[
|
||||
object,
|
||||
uuid(47d2657a-7b27-11d0-8ca9-00a0c92dbfe8),
|
||||
pointer_default(unique)
|
||||
pointer_default(unique),
|
||||
local
|
||||
]
|
||||
interface IDockingWindowFrame : IOleWindow
|
||||
{
|
||||
|
@ -1152,9 +1154,9 @@ interface IShellExecuteHookW : IUnknown
|
|||
]
|
||||
interface IShellLinkDataList : IUnknown
|
||||
{
|
||||
HRESULT AddDataBlock(
|
||||
[local] HRESULT AddDataBlock(
|
||||
[in] void *pDataBlock);
|
||||
HRESULT CopyDataBlock(
|
||||
[local] HRESULT CopyDataBlock(
|
||||
[in] DWORD dwSig,
|
||||
[out] void **ppDataBlock);
|
||||
HRESULT RemoveDataBlock(
|
||||
|
|
Loading…
Reference in New Issue