Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 1.34 KB

helpstringdll.md

File metadata and controls

59 lines (44 loc) · 1.34 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: helpstringdll
helpstringdll (C++ COM Attribute)
10/02/2018
vc-attr.helpstringdll
helpstringdll attribute [C++]
121271fa-f061-492b-b87f-bbfcf4b02e7b

helpstringdll

Specifies the name of the DLL to use to perform document string lookup (localization).

Syntax

[ helpstringdll("string") ]

Parameters

string
The DLL to use to perform document string lookup.

Remarks

The helpstringdll C++ attribute has the same functionality as the helpstringdll MIDL attribute.

Example

// cpp_attr_ref_helpstringdll.cpp
// compile with: /LD
#include <unknwn.h>
[module(name="MyLib", helpstringdll="xx.dll")];

[object, uuid("00000000-0000-0000-0000-000000000001")]
__interface IMyI
{
   HRESULT xxx();
};

Requirements

Attribute context Value
Applies to class, interface, interface method
Repeatable No
Required attributes None
Invalid attributes None

For more information, see Attribute Contexts.

See also

IDL Attributes
Interface Attributes
Class Attributes
Method Attributes