Custom Platform Support Development Kit  1.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IFCMNotificationService.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 
29 #ifndef IFCM_NOTIFICATION_SERVICE_H_
30 #define IFCM_NOTIFICATION_SERVICE_H_
31 
32 #include "FCMPreConfig.h"
33 #include "FCMTypes.h"
34 #include "IFCMUnknown.h"
35 #include "IFCMNotificationClient.h"
36 
37 
38 /* -------------------------------------------------- Forward Decl */
39 
40 
41 /* -------------------------------------------------- Macros / Constants */
42 
43 namespace FCM
44 {
51  {0x4488009e, 0x53ca, 0x43ef, {0x88, 0x90, 0x50, 0x48, 0x2c, 0xde, 0x31, 0xaa}};
52 }
53 
54 
55 /* -------------------------------------------------- Enums */
56 
57 
58 /* -------------------------------------------------- Structs / Unions */
59 
60 
61 /* -------------------------------------------------- Class Decl */
62 
63 namespace FCM
64 {
71 
72 
87  virtual FCM::Result _FCMCALL RegisterNotificationClient(
88  PIFCMNotificationClient pClient,
90  const FCM::PVoid pRefCon) = 0;
91 
92 
106  virtual FCM::Result _FCMCALL UnregisterNotificationClient(
107  PIFCMNotificationClient pClient,
108  ConstRefFCMNotifyID nid) = 0;
109 
110 
125  virtual FCM::Result _FCMCALL SendNotification(
127  const FCM::PVoid pNotificationData) = 0;
128 
130 
131 }; // namespace FCM
132 
133 
134 /* -------------------------------------------------- Inline / Functions */
135 
136 
137 #include "FCMPostConfig.h"
138 
139 #endif //IFCM_NOTIFICATION_SERVICE_H_
This file contains definitions for various data types.
#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
Defines the interface that represents a notification service.
Definition: IFCMNotificationService.h:70
This file contains interface for IFCMUnknown. All FCM interfaces inherit from IFCMUnknown. This interface is similar to Microsoft's COM IUnknown. Primary purpose of this interface is to facilitate a way to obtain pointers to other interfaces through QueryInterface method.
#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_IFCMNotificationService
Defines the universally-unique interface ID for IFCMNotificationService.
Definition: IFCMNotificationService.h:50
This file contains interface for IFCMNotificationClient. The IFCMNotificationClient interface must be...
#define END_DECLARE_INTERFACE
Ends an interface.
Definition: FCMMacros.h:165
void * PVoid
Type to define a void pointer.
Definition: FCMTypes.h:147