Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ccee0297
Commit
ccee0297
authored
Jul 07, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added htiframe.idl.
parent
5638fac6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
137 additions
and
0 deletions
+137
-0
uuid.c
dlls/uuid/uuid.c
+1
-0
.gitignore
include/.gitignore
+1
-0
Makefile.in
include/Makefile.in
+1
-0
htiframe.idl
include/htiframe.idl
+134
-0
No files found.
dlls/uuid/uuid.c
View file @
ccee0297
...
...
@@ -65,6 +65,7 @@ DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0);
#include "hlink.h"
#include "optary.h"
#include "indexsvr.h"
#include "htiframe.h"
/* FIXME: cguids declares GUIDs but does not define their values */
...
...
include/.gitignore
View file @
ccee0297
...
...
@@ -12,6 +12,7 @@ docobj.h
downloadmgr.h
exdisp.h
hlink.h
htiframe.h
iads.h
indexsvr.h
mediaobj.h
...
...
include/Makefile.in
View file @
ccee0297
...
...
@@ -17,6 +17,7 @@ WINDOWS_IDL_SRCS = \
downloadmgr.idl
\
exdisp.idl
\
hlink.idl
\
htiframe.idl
\
iads.idl
\
indexsvr.idl
\
mediaobj.idl
\
...
...
include/htiframe.idl
0 → 100644
View file @
ccee0297
/*
*
Copyright
2006
Jacek
Caban
for
CodeWeavers
*
*
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
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
import
"objidl.idl"
;
import
"oleidl.idl"
;
/*****************************************************************************
*
ITargetNotify
interface
*/
[
object
,
uuid
(
863
a99a0
-
21b
c
-
11
d0
-
82b4
-
00
a0c90c29c5
),
pointer_default
(
unique
)
]
interface
ITargetNotify
:
IUnknown
{
typedef
[
unique
]
ITargetNotify
*
LPTARGETNOTIFY
;
HRESULT
OnCreate
(
[
in
]
IUnknown
*
pUnkDestination
,
[
in
]
ULONG
cbCookie
)
;
HRESULT
OnReuse
(
[
in
]
IUnknown
*
pUnkDestination
)
;
}
/*****************************************************************************
*
ITargetNotify2
interface
*/
[
object
,
uuid
(
3050
f6b1
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
),
pointer_default
(
unique
)
]
interface
ITargetNotify2
:
ITargetNotify
{
typedef
[
unique
]
ITargetNotify2
*
LPTARGETNOTIFY2
;
HRESULT
GetOptionString
(
[
in
,
out
]
BSTR
*
pbstrOptions
)
;
}
/*****************************************************************************
*
ITargetFrame2
interface
*/
[
object
,
uuid
(
86
d52e11
-
94
a8
-
11
d0
-
82
af
-
00
c04fd5ae38
),
pointer_default
(
unique
)
]
interface
ITargetFrame2
:
IUnknown
{
typedef
[
unique
]
ITargetFrame2
*
LPTARGETFRAME2
;
typedef
enum
{
FINDFRAME_NONE
=
0
,
FINDFRAME_JUSTTESTEXISTENCE
=
1
,
FINDFRAME_INTERNAL
=
0
x80000000
}
FINDFRAME_FLAGS
;
typedef
enum
{
FRAMEOPTIONS_SCROLL_YES
=
0
x00000001
,
FRAMEOPTIONS_SCROLL_NO
=
0
x00000002
,
FRAMEOPTIONS_SCROLL_AUTO
=
0
x00000004
,
FRAMEOPTIONS_NORESIZE
=
0
x00000008
,
FRAMEOPTIONS_NO3DBORDER
=
0
x00000010
,
FRAMEOPTIONS_DESKTOP
=
0
x00000020
,
FRAMEOPTIONS_BROWSERBAND
=
0
x00000040
}
FRAMEOPTIONS_FLAGS
;
HRESULT
SetFrameName
(
[
in
]
LPCWSTR
pszFrameName
)
;
HRESULT
GetFrameName
(
[
out
]
LPWSTR
*
ppszFrameName
)
;
HRESULT
GetParentFrame
(
[
out
]
IUnknown
**
ppunkParent
)
;
HRESULT
SetFrameSrc
(
[
in
]
LPCWSTR
pszFrameSrc
)
;
HRESULT
GetFrameSrc
(
[
out
]
LPWSTR
*
ppszFrameSrc
)
;
HRESULT
GetFramesContainer
(
[
out
]
IOleContainer
**
ppContainer
)
;
HRESULT
SetFrameOptions
(
[
in
]
DWORD
dwFlags
)
;
HRESULT
GetFrameOptions
(
[
out
]
DWORD
*
pdwFlags
)
;
HRESULT
SetFrameMargins
(
[
in
]
DWORD
dwWidth
,
[
in
]
DWORD
dwHeight
)
;
HRESULT
GetFrameMargins
(
[
out
]
DWORD
*
pdwWidth
,
[
out
]
DWORD
*
pdwHeight
)
;
HRESULT
FindFrame
(
[
in
,
unique
]
LPCWSTR
pszTargetName
,
[
in
]
DWORD
dwFlags
,
[
out
]
IUnknown
**
ppunkTargetFrame
)
;
HRESULT
GetTargetAlias
(
[
in
,
unique
]
LPCWSTR
pszTargetName
,
[
out
]
LPWSTR
*
ppszTargetAlias
)
;
}
/*****************************************************************************
*
ITargetContainer
interface
*/
[
object
,
uuid
(
7847
ec01
-
2b
ec
-
11
d0
-
82b4
-
00
a0c90C29c5
),
pointer_default
(
unique
)
]
interface
ITargetContainer
:
IUnknown
{
typedef
[
unique
]
ITargetContainer
*
LPTARGETCONTAINER
;
HRESULT
GetFrameUrl
(
[
out
]
LPWSTR
*
ppszFrameSrc
)
;
HRESULT
GetFramesContainer
(
[
out
]
IOleContainer
**
ppContainer
)
;
}
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