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
6501e2e5
Commit
6501e2e5
authored
Oct 25, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 26, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added urlhist.idl.
parent
a06aeaba
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
142 additions
and
0 deletions
+142
-0
uuid.c
dlls/uuid/uuid.c
+1
-0
.gitignore
include/.gitignore
+1
-0
Makefile.in
include/Makefile.in
+1
-0
urlhist.idl
include/urlhist.idl
+139
-0
No files found.
dlls/uuid/uuid.c
View file @
6501e2e5
...
...
@@ -66,6 +66,7 @@ DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0);
#include "optary.h"
#include "indexsrv.h"
#include "htiframe.h"
#include "urlhist.h"
/* FIXME: cguids declares GUIDs but does not define their values */
...
...
include/.gitignore
View file @
6501e2e5
...
...
@@ -41,6 +41,7 @@
/strmif.h
/tom.h
/unknwn.h
/urlhist.h
/urlmon.h
/wtypes.h
/xmldom.h
...
...
include/Makefile.in
View file @
6501e2e5
...
...
@@ -46,6 +46,7 @@ WINDOWS_IDL_SRCS = \
strmif.idl
\
tom.idl
\
unknwn.idl
\
urlhist.idl
\
urlmon.idl
\
wtypes.idl
\
xmldom.idl
\
...
...
include/urlhist.idl
0 → 100644
View file @
6501e2e5
/*
*
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"
;
import
"oaidl.idl"
;
import
"docobj.idl"
;
import
"servprov.idl"
;
typedef
enum
_ADDURL_FLAG
{
ADDURL_FIRST
=
0
,
ADDURL_ADDTOHISTORYANDCACHE
=
0
,
ADDURL_ADDTOCACHE
=
1
,
ADDURL_Max
=
0
x7fffffff
}
ADDURL_FLAG
;
/*****************************************************************************
*
IEnumSTATURL
interface
*/
[
object
,
uuid
(
3
c374a42
-
bae4
-
11
cf
-
bf7d
-
00
aa006946ee
),
pointer_default
(
unique
)
]
interface
IEnumSTATURL
:
IUnknown
{
typedef
[
unique
]
IEnumSTATURL
*
LPENUMSTATURL
;
typedef
struct
_STATURL
{
DWORD
cbSize
;
LPWSTR
pwcsUrl
;
LPWSTR
pwcsTitle
;
FILETIME
ftLastVisited
;
FILETIME
ftLastUpdated
;
FILETIME
ftExpires
;
DWORD
dwFlags
;
}
STATURL
,
*
LPSTATURL
;
HRESULT
Next
(
[
in
]
ULONG
celt
,
[
in
,
out
]
LPSTATURL
rgelt
,
[
in
,
out
]
ULONG
*
pceltFetched
)
;
HRESULT
Skip
(
[
in
]
ULONG
celt
)
;
HRESULT
Reset
()
;
HRESULT
Clone
(
[
out
]
IEnumSTATURL
**
ppenum
)
;
HRESULT
SetFilter
(
[
in
]
LPCOLESTR
poszFilter
,
[
in
]
DWORD
dwFlags
)
;
}
/*****************************************************************************
*
IUrlHistoryStg
interface
*/
[
object
,
uuid
(
3
c374a41
-
bae4
-
11
cf
-
bf7d
-
00
aa006946ee
),
pointer_default
(
unique
)
]
interface
IUrlHistoryStg
:
IUnknown
{
typedef
[
unique
]
IUrlHistoryStg
*
LPURLHISTORYSTG
;
HRESULT
AddUrl
(
[
in
]
LPCOLESTR
pocsUrl
,
[
in
,
unique
]
LPCOLESTR
pocsTitle
,
[
in
]
DWORD
dwFlags
)
;
HRESULT
DeleteUrl
(
[
in
]
LPCOLESTR
pocsUrl
,
[
in
]
DWORD
dwFlags
)
;
HRESULT
QueryUrl
(
[
in
]
LPCOLESTR
pocsUrl
,
[
in
]
DWORD
dwFlags
,
[
in
,
out
,
unique
]
LPSTATURL
lpSTATURL
)
;
HRESULT
BindToObject
(
[
in
]
LPCOLESTR
pocsUrl
,
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
)
]
void
**
ppvOut
)
;
HRESULT
EnumUrls
(
[
out
]
IEnumSTATURL
**
ppEnum
)
;
}
/*****************************************************************************
*
IUrlHistoryStg2
interface
*/
[
object
,
uuid
(
afa0dc11
-
c313
-
11
d0
-
831
a
-
00
c04fd5ae38
),
pointer_default
(
unique
)
]
interface
IUrlHistoryStg2
:
IUrlHistoryStg
{
typedef
[
unique
]
IUrlHistoryStg2
*
LPURLHISTORYSTG2
;
HRESULT
AddUrlAndNotify
(
[
in
]
LPCOLESTR
pocsUrl
,
[
in
,
unique
]
LPCOLESTR
pocsTitle
,
[
in
]
DWORD
dwFlags
,
[
in
]
BOOL
fWriteHistory
,
[
in
]
IOleCommandTarget
*
poctNotify
,
[
in
,
unique
]
IUnknown
*
punkISFolder
)
;
HRESULT
ClearHistory
()
;
}
/*****************************************************************************
*
IUrlHistoryNotify
interface
*/
[
object
,
uuid
(
bc40bec1
-
c493
-
11
d0
-
831b
-
00
C04fd5ae38
),
pointer_default
(
unique
)
]
interface
IUrlHistoryNotify
:
IOleCommandTarget
{
typedef
[
unique
]
IUrlHistoryNotify
*
LPURLHISTORYNOTIFY
;
}
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