Skip to content

Latest commit

 

History

History
85 lines (71 loc) · 2.18 KB

File metadata and controls

85 lines (71 loc) · 2.18 KB
title appobject | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
vc-attr.appobject
dev_langs
C++
helpviewer_keywords
appobject attribute
ms.assetid 8ce30b73-e945-403e-a755-6bc78078a695
caps.latest.revision 10
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

appobject

Identifies the coclass as an application object, which is associated with a full .exe application, and indicates that the functions and properties of the coclass are globally available in this type library.

Syntax

  
[appobject]  
  

Remarks

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

Example

The following code shows a simple class definition preceded by an attribute block that includes appobject:

// cpp_attr_ref_appobject.cpp  
// compile with: /LD  
#include <windows.h>  
[module(name="MyLib", uuid="f1ce17f0-a5df-4d26-95f6-0a122197ac5b")];  
  
[object, uuid="905de6db-7a12-45ab-9f8b-b39f5112f010"]  
__interface ICustom {};  
  
[coclass, appobject,uuid="00395340-745f-4b69-bd58-e2921452b9fc"]  
class A : public ICustom {  
   int i;  
};  

Requirements

Attribute Context

Applies to class, struct
Repeatable No
Required attributes coclass
Invalid attributes None

For more information about the attribute contexts, see Attribute Contexts.

See Also

IDL Attributes
Class Attributes
Typedef, Enum, Union, and Struct Attributes