diff options
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/wndutil.h')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/wndutil.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/wndutil.h b/src/libs/dutil/WixToolset.DUtil/inc/wndutil.h new file mode 100644 index 00000000..8de77f6e --- /dev/null +++ b/src/libs/dutil/WixToolset.DUtil/inc/wndutil.h | |||
@@ -0,0 +1,41 @@ | |||
1 | #pragma once | ||
2 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
3 | |||
4 | |||
5 | #ifdef __cplusplus | ||
6 | extern "C" { | ||
7 | #endif | ||
8 | |||
9 | /******************************************************************** | ||
10 | WnduLoadRichEditFromFile - Attach a richedit control to a RTF file. | ||
11 | |||
12 | *******************************************************************/ | ||
13 | HRESULT DAPI WnduLoadRichEditFromFile( | ||
14 | __in HWND hWnd, | ||
15 | __in_z LPCWSTR wzFileName, | ||
16 | __in HMODULE hModule | ||
17 | ); | ||
18 | |||
19 | /******************************************************************** | ||
20 | WnduLoadRichEditFromResource - Attach a richedit control to resource data. | ||
21 | |||
22 | *******************************************************************/ | ||
23 | HRESULT DAPI WnduLoadRichEditFromResource( | ||
24 | __in HWND hWnd, | ||
25 | __in_z LPCSTR szResourceName, | ||
26 | __in HMODULE hModule | ||
27 | ); | ||
28 | |||
29 | /******************************************************************** | ||
30 | WnduGetControlText - gets the text of a control. | ||
31 | |||
32 | *******************************************************************/ | ||
33 | HRESULT DAPI WnduGetControlText( | ||
34 | __in HWND hWnd, | ||
35 | __inout_z LPWSTR* psczText | ||
36 | ); | ||
37 | |||
38 | #ifdef __cplusplus | ||
39 | } | ||
40 | #endif | ||
41 | |||