Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2e401c67
Commit
2e401c67
authored
Sep 02, 2005
by
Troy Rollo
Committed by
Alexandre Julliard
Sep 02, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added objsafe.idl for IObjectSafety interface.
parent
7d19bf5d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
0 deletions
+45
-0
.cvsignore
include/.cvsignore
+1
-0
Makefile.in
include/Makefile.in
+1
-0
objsafe.idl
include/objsafe.idl
+43
-0
No files found.
include/.cvsignore
View file @
2e401c67
...
...
@@ -22,6 +22,7 @@ msxml.h
msxml2.h
oaidl.h
objidl.h
objsafe.h
ocidl.h
oleidl.h
propidl.h
...
...
include/Makefile.in
View file @
2e401c67
...
...
@@ -27,6 +27,7 @@ WINDOWS_IDL_SRCS = \
msxml2.idl
\
oaidl.idl
\
objidl.idl
\
objsafe.idl
\
ocidl.idl
\
oleidl.idl
\
propidl.idl
\
...
...
include/objsafe.idl
0 → 100644
View file @
2e401c67
/*
*
Copyright
(
C
)
2005
CorVu
Corporation
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
59
Temple
Place
,
Suite
330
,
Boston
,
MA
02111
-
1307
USA
*/
import
"unknwn.idl"
;
cpp_quote
(
"#define INTERFACESAFE_FOR_UNTRUSTED_CALLER 1"
)
;
cpp_quote
(
"#define INTERFACESAFE_FOR_UNTRUSTED_DATA 2"
)
;
cpp_quote
(
"#define INTERFACE_USES_DISPEX 4"
)
;
cpp_quote
(
"#define INTERFACE_USES_SECURITY_MANAGER 8"
)
;
cpp_quote
(
"DEFINE_GUID(CATID_SafeForScripting, 0x7dd95801,0x9882,0x11cf,0x9f,0xa9,0x00,0xaa,0x00,0x6c,0x42,0xc4);"
)
;
cpp_quote
(
"DEFINE_GUID(CATID_SafeForInitializing, 0x7dd95802,0x9882,0x11cf,0x9f,0xa9,0x00,0xaa,0x00,0x6c,0x42,0xc4);"
)
;
[
object
,
uuid
(
cb5bdc81
-
93
c1
-
11
cf
-
8
f20
-
00805
f2cd064
),
pointer_default
(
unique
)
]
interface
IObjectSafety
:
IUnknown
{
HRESULT
GetInterfaceSafetyOptions
(
[
in
]
REFIID
riid
,
[
out
]
DWORD
*
pdwSupportedOptions
,
[
out
]
DWORD
*
pdwEnabledOptions
)
;
HRESULT
SetInterfaceSafetyOptions
(
[
in
]
REFIID
riid
,
[
in
]
DWORD
dwOptionSetMask
,
[
in
]
DWORD
dwEnabledOptions
)
;
}
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