Commit b4efe919 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

include: Add local to interfaces or functions that take a void * parameter and…

include: Add local to interfaces or functions that take a void * parameter and so aren't designed to work remotely.
parent 0120c1a5
...@@ -61,7 +61,8 @@ cpp_quote("#define AMDSS_PRIMARY (AMDDS_DCIPS | AMDDS_PS)") ...@@ -61,7 +61,8 @@ cpp_quote("#define AMDSS_PRIMARY (AMDDS_DCIPS | AMDDS_PS)")
[ [
object, object,
pointer_default(unique) pointer_default(unique),
local
] ]
interface IDirectDrawVideo : IUnknown interface IDirectDrawVideo : IUnknown
{ {
...@@ -85,7 +86,8 @@ interface IDirectDrawVideo : IUnknown ...@@ -85,7 +86,8 @@ interface IDirectDrawVideo : IUnknown
[ [
object, object,
pointer_default(unique) pointer_default(unique),
local
] ]
interface IQualProp : IUnknown interface IQualProp : IUnknown
{ {
...@@ -124,7 +126,8 @@ interface IFullScreenVideo : IUnknown ...@@ -124,7 +126,8 @@ interface IFullScreenVideo : IUnknown
[ [
object, object,
pointer_default(unique) pointer_default(unique),
local
] ]
interface IFullScreenVideoEx : IFullScreenVideo interface IFullScreenVideoEx : IFullScreenVideo
{ {
...@@ -137,7 +140,8 @@ interface IFullScreenVideoEx : IFullScreenVideo ...@@ -137,7 +140,8 @@ interface IFullScreenVideoEx : IFullScreenVideo
[ [
object, object,
pointer_default(unique) pointer_default(unique),
local
] ]
interface IBaseVideoMixer : IUnknown interface IBaseVideoMixer : IUnknown
{ {
......
...@@ -958,7 +958,8 @@ cpp_quote("#define KSPROPERTY_SUPPORT_SET 2") ...@@ -958,7 +958,8 @@ cpp_quote("#define KSPROPERTY_SUPPORT_SET 2")
[ [
object, object,
uuid(31efac30-515c-11d0-a9aa-00aa0061be93), uuid(31efac30-515c-11d0-a9aa-00aa0061be93),
pointer_default(unique) pointer_default(unique),
local
] ]
interface IKsPropertySet : IUnknown interface IKsPropertySet : IUnknown
{ {
......
...@@ -185,7 +185,8 @@ interface IEnumRegisterWordW : IUnknown ...@@ -185,7 +185,8 @@ interface IEnumRegisterWordW : IUnknown
[ [
object, object,
uuid(09b5eab0-f997-11d1-93d4-0060b067b86e), uuid(09b5eab0-f997-11d1-93d4-0060b067b86e),
pointer_default(unique) pointer_default(unique),
local
] ]
interface IEnumInputContext : IUnknown interface IEnumInputContext : IUnknown
{ {
...@@ -206,7 +207,8 @@ interface IEnumInputContext : IUnknown ...@@ -206,7 +207,8 @@ interface IEnumInputContext : IUnknown
[ [
object, object,
uuid(08c0e040-62d1-11d1-9326-0060b067b86e), uuid(08c0e040-62d1-11d1-9326-0060b067b86e),
pointer_default(unique) pointer_default(unique),
local
] ]
interface IActiveIMMApp : IUnknown interface IActiveIMMApp : IUnknown
{ {
......
...@@ -716,7 +716,8 @@ cpp_quote("#define IShellLink WINELIB_NAME_AW(IShellLink)") ...@@ -716,7 +716,8 @@ cpp_quote("#define IShellLink WINELIB_NAME_AW(IShellLink)")
[ [
object, object,
uuid(000214e8-0000-0000-c000-000000000046), uuid(000214e8-0000-0000-c000-000000000046),
pointer_default(unique) pointer_default(unique),
local
] ]
interface IShellExtInit : IUnknown interface IShellExtInit : IUnknown
{ {
...@@ -869,7 +870,8 @@ cpp_quote("#define CDBOSC_STATECHANGE 0x00000004") ...@@ -869,7 +870,8 @@ cpp_quote("#define CDBOSC_STATECHANGE 0x00000004")
[ [
object, object,
uuid(47d2657a-7b27-11d0-8ca9-00a0c92dbfe8), uuid(47d2657a-7b27-11d0-8ca9-00a0c92dbfe8),
pointer_default(unique) pointer_default(unique),
local
] ]
interface IDockingWindowFrame : IOleWindow interface IDockingWindowFrame : IOleWindow
{ {
...@@ -1152,9 +1154,9 @@ interface IShellExecuteHookW : IUnknown ...@@ -1152,9 +1154,9 @@ interface IShellExecuteHookW : IUnknown
] ]
interface IShellLinkDataList : IUnknown interface IShellLinkDataList : IUnknown
{ {
HRESULT AddDataBlock( [local] HRESULT AddDataBlock(
[in] void *pDataBlock); [in] void *pDataBlock);
HRESULT CopyDataBlock( [local] HRESULT CopyDataBlock(
[in] DWORD dwSig, [in] DWORD dwSig,
[out] void **ppDataBlock); [out] void **ppDataBlock);
HRESULT RemoveDataBlock( HRESULT RemoveDataBlock(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment