diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-24 12:45:18 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-24 12:45:18 +0000 |
commit | 0cda0baab21d4d4bf40c9459f6f5a7e49aa92492 (patch) | |
tree | c1244d2f42e6d1728a81a18bd0fbd091904bf20c /plugins/W7UI/win7api_ICustomDestinationList.h | |
parent | 171e81205e357e0d54283a63997ed58ff97d54a9 (diff) |
VersionInfo, W7UI, WhoUsesMyFiles, YAPP, ZeroNotification: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1161 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/W7UI/win7api_ICustomDestinationList.h')
-rw-r--r-- | plugins/W7UI/win7api_ICustomDestinationList.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/plugins/W7UI/win7api_ICustomDestinationList.h b/plugins/W7UI/win7api_ICustomDestinationList.h deleted file mode 100644 index 6d3f770d29..0000000000 --- a/plugins/W7UI/win7api_ICustomDestinationList.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef __ICustomDestinationList_INTERFACE_DEFINED__
-#define __ICustomDestinationList_INTERFACE_DEFINED__
-
-typedef /* [v1_enum] */ enum tagKNOWNDESTCATEGORY {
- KDC_FREQUENT = 1,
- KDC_RECENT = (KDC_FREQUENT + 1)
-} KNOWNDESTCATEGORY;
-
-MIDL_INTERFACE("6332debf-87b5-4670-90c0-5e57b408a49e")
-ICustomDestinationList : public IUnknown {
- public:
- virtual HRESULT STDMETHODCALLTYPE SetAppID(
- /* [string][in] */__RPC__in_string LPCWSTR pszAppID) = 0;
- virtual HRESULT STDMETHODCALLTYPE BeginList(
- /* [out] */ __RPC__out UINT *pcMaxSlots,
- /* [in] */ __RPC__in REFIID riid,
- /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0;
- virtual HRESULT STDMETHODCALLTYPE AppendCategory(
- /* [string][in] */ __RPC__in_string LPCWSTR pszCategory,
- /* [in] */ __RPC__in_opt IObjectArray *poa) = 0;
- virtual HRESULT STDMETHODCALLTYPE AppendKnownCategory(
- /* [in] */ KNOWNDESTCATEGORY category) = 0;
- virtual HRESULT STDMETHODCALLTYPE AddUserTasks(
- /* [in] */ __RPC__in_opt IObjectArray *poa) = 0;
- virtual HRESULT STDMETHODCALLTYPE CommitList(void) = 0;
- virtual HRESULT STDMETHODCALLTYPE GetRemovedDestinations(
- /* [in] */ __RPC__in REFIID riid,
- /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0;
- virtual HRESULT STDMETHODCALLTYPE DeleteList(
- /* [string][in] */ __RPC__in_string LPCWSTR pszAppID) = 0;
- virtual HRESULT STDMETHODCALLTYPE AbortList(void) = 0;
-};
-
-#endif // __ICustomDestinationList_INTERFACE_DEFINED__
|