Custom Platform Support Development Kit  1.3
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ISWFExportService.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 
26 #ifndef ISWF_EXPORT_SERVICE_H_
27 #define ISWF_EXPORT_SERVICE_H_
28 
29 #include "FCMPreConfig.h"
30 #include "FCMPluginInterface.h"
31 #include "Utils/DOMTypes.h"
32 #include "IFCMDictionary.h"
33 
34 
35 /* -------------------------------------------------- Forward Decl */
36 
37 namespace DOM
38 {
39  FORWARD_DECLARE_INTERFACE(IFLADocument);
40  FORWARD_DECLARE_INTERFACE(ITimeline);
41 }
42 
43 
44 /* -------------------------------------------------- Enums */
45 
46 
47 /* -------------------------------------------------- Macros / Constants */
48 
49 namespace Exporter
50 {
51  namespace Service
52  {
60  {0xb4c11f4f, 0x982a, 0x4d24, {0xa5, 0xc4, 0xbf, 0x9c, 0xa0, 0x43, 0x7b, 0xf5}};
61  }
62 }
63 
64 
65 /* -------------------------------------------------- Structs / Unions */
66 
67 
68 /* -------------------------------------------------- Class Decl */
69 
70 namespace Exporter
71 {
72  namespace Service
73  {
80 
81 
97  virtual FCM::Result _FCMCALL ExportToFile(
98  DOM::PIFLADocument pFlaDocument,
99  FCM::CStringRep16 pFilePath) = 0;
100 
101 
118  virtual FCM::Result _FCMCALL ExportToFile(
119  DOM::PITimeline pTimeline,
120  FCM::CStringRep16 pFilePath) = 0;
121 
123  }
124 }
125 
126 
127 /* -------------------------------------------------- Inline / Functions */
128 
129 
130 #include "FCMPostConfig.h"
131 
132 #endif // ISWF_EXPORT_SERVICE_H_
133 
FCM::ConstFCMIID IID_ISWF_EXPORT_SERVICE
Defines the universally-unique interface ID for ISWFExportService.
Definition: ISWFExportService.h:59
#define FORWARD_DECLARE_INTERFACE(ifx)
Used to forward declare an interface ifx.
Definition: FCMMacros.h:114
#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
Provides interfaces and other definitions to access the FLA authored contents in the form of a DOM (D...
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
This file contains the types used for DOM traversal and access.
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
Provides interfaces for exporter that can be used by custom publisher.
const U_Int16 * CStringRep16
Used to define a constant UTF16 (unicode) encoded string.
Definition: FCMTypes.h:168
Defines an interface that exports an FLA document to SWF format.
Definition: ISWFExportService.h:79
#define END_DECLARE_INTERFACE
Ends an interface.
Definition: FCMMacros.h:165