mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
Fix compiling with midl. According to msdn documentation, this could be done with /app_config key, but it doesn't work for me.
svn path=/trunk/; revision=21322
This commit is contained in:
parent
0b5769a857
commit
e770e2ea98
3 changed files with 14 additions and 4 deletions
6
reactos/include/reactos/idl/lsa.acf
Normal file
6
reactos/include/reactos/idl/lsa.acf
Normal file
|
@ -0,0 +1,6 @@
|
|||
[
|
||||
explicit_handle
|
||||
]
|
||||
interface svcctl
|
||||
{
|
||||
}
|
|
@ -13,8 +13,10 @@
|
|||
[
|
||||
uuid(12345778-1234-abcd-ef00-0123456789ab),
|
||||
version(0.0),
|
||||
pointer_default(unique),
|
||||
explicit_handle
|
||||
pointer_default(unique)
|
||||
#ifndef __midl
|
||||
,explicit_handle
|
||||
#endif
|
||||
]
|
||||
interface lsarpc
|
||||
{
|
||||
|
|
|
@ -11,8 +11,10 @@
|
|||
[
|
||||
uuid (809F4e40-A03D-11CE-8F69-08003E30051B),
|
||||
version(1.0),
|
||||
pointer_default(unique),
|
||||
explicit_handle
|
||||
pointer_default(unique)
|
||||
#ifndef __midl
|
||||
,explicit_handle
|
||||
#endif
|
||||
]
|
||||
interface pnp
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue