mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 12:08:55 +00:00
[PDSK]
MIDL doesn't like if interfaces are not defined. Add some empty interfaces to activedbg.idl make it compile. svn path=/branches/cmake-bringup/; revision=49703
This commit is contained in:
parent
9053592456
commit
0f10cf2e2a
2 changed files with 72 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
LIST(APPEND SOURCE
|
LIST(APPEND SOURCE
|
||||||
# access.idl
|
# access.idl
|
||||||
activaut.idl
|
activaut.idl
|
||||||
|
activdbg.idl
|
||||||
activscp.idl
|
activscp.idl
|
||||||
asptlb.idl
|
asptlb.idl
|
||||||
# asynot.idl
|
# asynot.idl
|
||||||
|
@ -98,7 +99,6 @@ LIST(APPEND SOURCE
|
||||||
|
|
||||||
if(NOT MSVC)
|
if(NOT MSVC)
|
||||||
LIST(APPEND SOURCE
|
LIST(APPEND SOURCE
|
||||||
activdbg.idl
|
|
||||||
ctfutb.idl
|
ctfutb.idl
|
||||||
mlang.idl
|
mlang.idl
|
||||||
msctf.idl
|
msctf.idl
|
||||||
|
|
|
@ -553,6 +553,77 @@ interface IActiveScriptSiteDebug64 : IUnknown
|
||||||
[out] BOOL *pfCallOnScriptErrorWhenContinuing);
|
[out] BOOL *pfCallOnScriptErrorWhenContinuing);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(51973C17-CB0C-11d0-B5C9-00A0244A0E7A),
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IDebugStackFrame : IUnknown
|
||||||
|
{
|
||||||
|
/* FIXME: fill me! */
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(51973C1e-CB0C-11d0-B5C9-00A0244A0E7A),
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IEnumDebugStackFrames : IUnknown
|
||||||
|
{
|
||||||
|
/* FIXME: fill me! */
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(51973C2a-CB0C-11d0-B5C9-00A0244A0E7A),
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IApplicationDebugger : IUnknown
|
||||||
|
{
|
||||||
|
/* FIXME: fill me! */
|
||||||
|
};
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(51973C3c-CB0C-11d0-B5C9-00A0244A0E7A),
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IEnumRemoteDebugApplicationThreads : IUnknown
|
||||||
|
{
|
||||||
|
/* FIXME: fill me! */
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(51973C34-CB0C-11d0-B5C9-00A0244A0E7A),
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IDebugApplicationNode : IUnknown
|
||||||
|
{
|
||||||
|
/* FIXME: fill me! */
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(51973C40-CB0C-11d0-B5C9-00A0244A0E7A),
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IEnumDebugExpressionContexts : IUnknown
|
||||||
|
{
|
||||||
|
/* FIXME: fill me! */
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(51973C38-CB0C-11d0-B5C9-00A0244A0E7A),
|
||||||
|
pointer_default(unique),
|
||||||
|
local
|
||||||
|
]
|
||||||
|
interface IDebugApplicationThread : IRemoteDebugApplicationThread
|
||||||
|
{
|
||||||
|
/* FIXME: fill me! */
|
||||||
|
}
|
||||||
|
|
||||||
cpp_quote("#ifndef DISABLE_ACTIVDBG_INTERFACE_WRAPPERS")
|
cpp_quote("#ifndef DISABLE_ACTIVDBG_INTERFACE_WRAPPERS")
|
||||||
cpp_quote("#ifdef _WIN64")
|
cpp_quote("#ifdef _WIN64")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue