source: lab.git/Dev/utvpn/utvpn-unix-v101-7101-public/src/Cedar/Win32Html.h @ a1bae3e

trunk
Last change on this file since a1bae3e was a1bae3e, checked in by mitty <mitty@…>, 12 years ago
  • copy vendor drop to trunk

git-svn-id: https://lab.mitty.jp/svn/lab/trunk@147 7d2118f6-f56c-43e7-95a2-4bb3031d96e7

  • Property mode set to 100644
File size: 9.5 KB
Line 
1// SoftEther UT-VPN SourceCode
2//
3// Copyright (C) 2004-2010 SoftEther Corporation.
4// Copyright (C) 2004-2010 University of Tsukuba, Japan.
5// Copyright (C) 2003-2010 Daiyuu Nobori.
6// All Rights Reserved.
7//
8// http://utvpn.tsukuba.ac.jp/
9//
10// This program is free software; you can redistribute it and/or
11// modify it under the terms of the GNU General Public License
12// version 2 as published by the Free Software Foundation.
13//
14// This program is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18//
19// You should have received a copy of the GNU General Public License version 2
20// along with this program; if not, write to the Free Software
21// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22//
23// このファイルは GPL バージョン 2 ライセンスで公開されています。
24// 誰でもこのファイルの内容を複製、改変したり、改変したバージョンを再配布
25// することができます。ただし、原著作物を改変した場合は、原著作物の著作権表示
26// を除去することはできません。改変した著作物を配布する場合は、改変実施者の
27// 著作権表示を原著作物の著作権表示に付随して記載するようにしてください。
28//
29// この SoftEther UT-VPN オープンソース・プロジェクトは、日本国の
30// ソフトイーサ株式会社 (SoftEther Corporation, http://www.softether.co.jp/ )
31// および筑波大学 (University of Tsukuba, http://www.tsukuba.ac.jp/ ) によって
32// ホストされています。
33// 本プログラムの配布者は、本プログラムを、業としての利用以外のため、
34// および、試験または研究のために利用が行われることを想定して配布
35// しています。
36// SoftEther UT-VPN プロジェクトの Web サイトは http://utvpn.tsukuba.ac.jp/ に
37// あります。
38// 本ソフトウェアの不具合の修正、機能改良、セキュリティホールの修復などのコード
39// の改変を行った場合で、その成果物を SoftEther UT-VPN プロジェクトに提出して
40// いただける場合は、 http://utvpn.tsukuba.ac.jp/ までソースコードを送付して
41// ください。SoftEther UT-VPN プロジェクトの本体リリースまたはブランチリリース
42// に組み込みさせていただきます。
43//
44// GPL に基づいて原著作物が提供される本ソフトウェアの改良版を配布、販売する
45// 場合は、そのソースコードを GPL に基づいて誰にでも開示する義務が生じます。
46//
47// 本ソフトウェアに関連する著作権、特許権、商標権はソフトイーサ株式会社
48// (SoftEther Corporation) およびその他の著作権保持者が保有しています。
49// ソフトイーサ株式会社等はこれらの権利を放棄していません。本ソフトウェアの
50// 二次著作物を配布、販売する場合は、これらの権利を侵害しないようにご注意
51// ください。
52//
53// お願い: どのような通信ソフトウェアにも通常は必ず未発見の
54// セキュリティホールが潜んでいます。本ソースコードをご覧いただいた結果、
55// UT-VPN にセキュリティホールを発見された場合は、当該セキュリティホールの
56// 情報を不特定多数に開示される前に、必ず、ソフトイーサ株式会社
57// および脆弱性情報の届出を受け付ける公的機関まで通報いただき、
58// 公益保護にご協力いただきますようお願い申し上げます。
59//
60// ソフトイーサ株式会社は、当該セキュリティホールについて迅速に対処を
61// 行い、UT-VPN および UT-VPN に関連するソフトウェアのユーザー・顧客
62// を保護するための努力を行います。
63//
64// ソフトイーサへの届出先: http://www.softether.co.jp/jp/contact/
65// 日本国内の脆弱性情報届出受付公的機関:
66//         独立行政法人 情報処理推進機構
67//         http://www.ipa.go.jp/security/vuln/report/
68//
69// 上記各事項について不明な点は、ソフトイーサ株式会社までご連絡ください。
70// 連絡先: http://www.softether.co.jp/jp/contact/
71
72// -----------------------------------------------
73// [ChangeLog]
74// 2010.05.20
75//  新規リリース by SoftEther
76// -----------------------------------------------
77
78// Win32Html.h
79// Win32Html.c のヘッダ
80
81#ifndef WIN32HTML_H
82#define WIN32HTML_H
83
84#ifdef  WIN32HTML_CPP
85
86// 内部向け関数
87
88#endif  // WIN32HTML_CPP
89
90// 外部向け関数
91
92#pragma comment(lib,"htmlhelp.lib")
93#pragma comment(lib,"Urlmon.lib")
94
95#if defined(__cplusplus)
96extern "C"
97{
98#endif
99
100    void ShowHtml(HWND hWnd, char *url, wchar_t *option);
101    bool CreateLink(wchar_t *filename, wchar_t *target, wchar_t *workdir, wchar_t *args,
102        wchar_t *comment, wchar_t *icon, UINT icon_index);
103    wchar_t *FolderDlgW(HWND hWnd, wchar_t *title, wchar_t *default_dir);
104    char *FolderDlgA(HWND hWnd, wchar_t *title, char *default_dir);
105
106    //////////////////////////////////////////////////////////////////////////
107    //JumpList
108
109
110    typedef void* JL_PCustomDestinationList;
111    typedef void* JL_PObjectArray;
112    typedef void* JL_PShellLink;
113    typedef void* JL_PObjectCollection;
114    typedef long JL_HRESULT;
115
116    JL_HRESULT JL_CreateCustomDestinationList(JL_PCustomDestinationList* poc, wchar_t* appID);
117    JL_HRESULT JL_ReleaseCustomDestinationList(JL_PCustomDestinationList poc);
118
119    JL_HRESULT JL_BeginList(JL_PCustomDestinationList poc, JL_PObjectArray* oaRemoved);
120    JL_HRESULT JL_CommitList(JL_PCustomDestinationList cdl);
121
122
123    JL_HRESULT JL_CreateObjectCollection(JL_PObjectCollection* poc);
124    JL_HRESULT JL_ReleaseObjectCollection(JL_PObjectCollection poc);
125    JL_HRESULT JL_ObjectCollectionAddShellLink(JL_PObjectCollection poc, JL_PShellLink ppsl);
126
127    JL_HRESULT JL_AddCategoryToList(JL_PCustomDestinationList pcdl, 
128        JL_PObjectCollection poc, 
129        wchar_t* categoryName,
130        JL_PObjectArray poaRemoved);
131    JL_HRESULT JL_DeleteJumpList(JL_PCustomDestinationList jpcdl,wchar_t* appID);
132
133
134    JL_HRESULT JL_CreateShellLink(
135        wchar_t* pszPath, 
136        wchar_t* pszArguments, 
137        wchar_t* pszTitle, 
138        wchar_t* iconLocation,
139        int iconIndex,
140        wchar_t* description, JL_PShellLink *ppsl);
141    JL_HRESULT JL_ReleaseShellLink(JL_PShellLink ppsl);
142
143
144    //SetApplicationID for Windows 7
145    JL_HRESULT JL_SetCurrentProcessExplicitAppUserModelID(wchar_t* appID);
146
147#if defined(__cplusplus)
148}
149#endif
150
151
152#if defined(__cplusplus)
153
154// 注意: このあたりの宣言文は Windows SDK からのコピーである。
155//       しかし創作性に乏しい (単なる宣言であるため) ので GPL のコード中にペーストしても
156//       支障はないと解釈している。
157
158#ifndef __IObjectArray_INTERFACE_DEFINED__
159#define __IObjectArray_INTERFACE_DEFINED__
160
161MIDL_INTERFACE("92CA9DCD-5622-4bba-A805-5E9F541BD8C9")
162IObjectArray : public IUnknown
163{
164public:
165    virtual HRESULT STDMETHODCALLTYPE GetCount( 
166        /* [out] */ __RPC__out UINT *pcObjects) = 0;
167
168    virtual HRESULT STDMETHODCALLTYPE GetAt( 
169        /* [in] */ UINT uiIndex,
170        /* [in] */ __RPC__in REFIID riid,
171        /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0;
172
173};
174
175MIDL_INTERFACE("5632b1a4-e38a-400a-928a-d4cd63230295")
176IObjectCollection : public IObjectArray
177{
178public:
179    virtual HRESULT STDMETHODCALLTYPE AddObject( 
180        /* [in] */ __RPC__in_opt IUnknown *punk) = 0;
181
182    virtual HRESULT STDMETHODCALLTYPE AddFromArray( 
183        /* [in] */ __RPC__in_opt IObjectArray *poaSource) = 0;
184
185    virtual HRESULT STDMETHODCALLTYPE RemoveObjectAt( 
186        /* [in] */ UINT uiIndex) = 0;
187
188    virtual HRESULT STDMETHODCALLTYPE Clear( void) = 0;
189
190};
191
192#endif  // __IObjectArray_INTERFACE_DEFINED__
193
194#ifndef __ICustomDestinationList_INTERFACE_DEFINED__
195#define __ICustomDestinationList_INTERFACE_DEFINED__
196
197typedef /* [v1_enum] */ 
198enum KNOWNDESTCATEGORY
199{   
200    KDC_FREQUENT    = 1,
201    KDC_RECENT  = ( KDC_FREQUENT + 1 ) 
202}   KNOWNDESTCATEGORY;
203
204MIDL_INTERFACE("6332debf-87b5-4670-90c0-5e57b408a49e")
205ICustomDestinationList : public IUnknown
206{
207public:
208    virtual HRESULT STDMETHODCALLTYPE SetAppID( 
209        /* [string][in] */ __RPC__in_string LPCWSTR pszAppID) = 0;
210
211    virtual HRESULT STDMETHODCALLTYPE BeginList( 
212        /* [out] */ __RPC__out UINT *pcMinSlots,
213        /* [in] */ __RPC__in REFIID riid,
214        /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0;
215
216    virtual HRESULT STDMETHODCALLTYPE AppendCategory( 
217        /* [string][in] */ __RPC__in_string LPCWSTR pszCategory,
218        /* [in] */ __RPC__in_opt IObjectArray *poa) = 0;
219
220    virtual HRESULT STDMETHODCALLTYPE AppendKnownCategory( 
221        /* [in] */ KNOWNDESTCATEGORY category) = 0;
222
223    virtual HRESULT STDMETHODCALLTYPE AddUserTasks( 
224        /* [in] */ __RPC__in_opt IObjectArray *poa) = 0;
225
226    virtual HRESULT STDMETHODCALLTYPE CommitList( void) = 0;
227
228    virtual HRESULT STDMETHODCALLTYPE GetRemovedDestinations( 
229        /* [in] */ __RPC__in REFIID riid,
230        /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0;
231
232    virtual HRESULT STDMETHODCALLTYPE DeleteList( 
233        /* [string][unique][in] */ __RPC__in_opt_string LPCWSTR pszAppID) = 0;
234
235    virtual HRESULT STDMETHODCALLTYPE AbortList( void) = 0;
236
237};
238
239
240#endif  // __ICustomDestinationList_INTERFACE_DEFINED__
241
242
243#endif //defined(__cplusplus)
244
245
246
247#endif  // WIN32HTML_H
Note: See TracBrowser for help on using the repository browser.