Custom Platform Support Development Kit  1.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IFCMPluginDictionary.h
Go to the documentation of this file.
1 /*************************************************************************
2 * ADOBE CONFIDENTIAL
3 * ___________________
4 *
5 * Copyright [2013] Adobe Systems Incorporated
6 * All Rights Reserved.
7 *
8 * NOTICE: All information contained herein is, and remains
9 * the property of Adobe Systems Incorporated and its suppliers,
10 * if any. The intellectual and technical concepts contained
11 * herein are proprietary to Adobe Systems Incorporated and its
12 * suppliers and are protected by all applicable intellectual
13 * property laws, including trade secret and copyright laws.
14 * Dissemination of this information or reproduction of this material
15 * is strictly forbidden unless prior written permission is obtained
16 * from Adobe Systems Incorporated.
17 **************************************************************************/
18 
32 #ifndef IFCM_PLUGIN_DICTIONARY_H_
33 #define IFCM_PLUGIN_DICTIONARY_H_
34 
35 #include "FCMPreConfig.h"
36 #include "FCMPluginInterface.h"
37 #include "IFCMDictionary.h"
38 
39 
40 /* -------------------------------------------------- Forward Decl */
41 
42 
43 /* -------------------------------------------------- Macros / Constants */
44 
45 namespace FCM
46 {
53  {0x6dc4ba91, 0x3bf2, 0x4dd7, {0x85, 0xb6, 0x8d, 0x6c, 0x3e, 0x76, 0x55, 0x20}};
54 }
55 
56 
57 /* -------------------------------------------------- Enums */
58 
59 
60 /* -------------------------------------------------- Structs / Unions */
61 
62 
63 /* -------------------------------------------------- Class Decl */
64 
65 namespace FCM
66 {
73 
74 
91  virtual FCM::Result _FCMCALL CreateRegistryEntry(
92  ConstRefFCMCLSID classID,
93  ConstRefFCMIID interfaceID,
94  PIFCMDictionary* ppRegistryDict) = 0;
95 
96 
105  virtual FCM::Result _FCMCALL GetRegistryEntriesCount(FCM::U_Int32& count) = 0;
106 
107 
126  virtual FCM::Result _FCMCALL GetNthRegistryEntry(
127  FCM::U_Int32 index,
128  FCMCLSID& classID,
129  FCMIID& interfaceID,
130  PIFCMDictionary& pRegistryDict) = 0;
131 
133 
134 }; // namespace FCM
135 
136 
137 /* -------------------------------------------------- Inline / Functions */
138 
139 
140 #include "FCMPostConfig.h"
141 
142 #endif //IFCM_PLUGIN_DICTIONARY_H_
unsigned _int32 U_Int32
Type to define an unsigned 32-bit value.
Definition: FCMTypes.h:81
#define BEGIN_DECLARE_INTERFACE(ifx, iid)
Used to begin the interface ifx with ID iid, which inherits from IFCMUnknown.
Definition: FCMMacros.h:147
The definitions contained in this namespace define a framework called Flash Component Model (FCM)...
Definition: IGroup.h:36
This file contains interface for IFCMDictionary. The IFCMDictionary is an interface for generic conta...
This file contains core definitions of the framework Flash Component Model (FCM). ...
#define _FCMCALL
Defines calling convention for interface methods.
Definition: FCMMacros.h:176
U_Int32 Result
Type to define a result. This is usually the return type for most APIs.
Definition: FCMTypes.h:126
Represents a 128 bit or 16-byte GUID (Globally Unique IDentifier) value.
Definition: FCMTypes.h:189
FCM::ConstFCMIID FCMIID_IFCMPluginDictionary
Defines the universally-unique interface ID for IFCMPluginDictionary.
Definition: IFCMPluginDictionary.h:52
Defines the interface that represents the Plugin Dictionary.
Definition: IFCMPluginDictionary.h:72
#define END_DECLARE_INTERFACE
Ends an interface.
Definition: FCMMacros.h:165