/* LUFA Library Copyright (C) Dean Camera, 2012. dean [at] fourwalledcubicle [dot] com www.lufa-lib.org */ /* Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com) Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that the copyright notice and this permission notice and warranty disclaimer appear in supporting documentation, and that the name of the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. The author disclaim all warranties with regard to this software, including all implied warranties of merchantability and fitness. In no event shall the author be liable for any special, indirect or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action of contract, negligence or other tortious action, arising out of or in connection with the use or performance of this software. */ #ifndef _SIDESHOW_COMMANDS_H_ #define _SIDESHOW_COMMANDS_H_ /* Includes: */ #include #include #include #include "../Sideshow.h" #include "SideshowCommon.h" #include "SideshowApplications.h" #include "SideshowContent.h" /* Enumerations: */ enum SideShow_PropertyKey_Types_t { VT_EMPTY = 0, VT_NULL = 1, VT_I2 = 2, VT_I4 = 3, VT_R4 = 4, VT_R8 = 5, VT_CY = 6, VT_DATE = 7, VT_BSTR = 8, VT_DISPATCH = 9, VT_ERROR = 10, VT_BOOL = 11, VT_VARIANT = 12, VT_UNKNOWN = 13, VT_UI1 = 17, VT_UI2 = 18, VT_UI4 = 19, VT_LPWSTR = 31, }; enum SideShow_ScreenTypeText_t { ScreenBitmap = 0, ScreenText = 1, }; enum SideShow_ColorTypes_t { ColorDisplay = 0, GrayscaleDisplay = 1, BlackAndWhiteDisplay = 2, }; enum SideShow_DeviceTypes_t { GenericDevice = 0, CameraDevice = 1, MediaPlayerDevice = 2, PhoneDevice = 3, VideoDevice = 4, PIMDevice = 5, AudioRecorderDevice = 6 }; /* Type Defines: */ typedef struct { GUID_t PropertyGUID; uint32_t PropertyID; } SideShow_PropertyKey_t; typedef struct { uint32_t DataType; union { void* DataPointer; uint8_t Data8; uint16_t Data16; uint32_t Data32; } Data; } SideShow_PropertyData_t; /* Macros: */ #define SIDESHOW_CMD_PING 0x001 #define SIDESHOW_CMD_SET_CURRENT_USER 0x100 #define SIDESHOW_CMD_GET_CURRENT_USER 0x101 #define SIDESHOW_CMD_GET_CAPABILITIES 0x103 #define SIDESHOW_CMD_GET_APPLICATION_ORDER 0x104 #define SIDESHOW_CMD_ADD_APPLICATION 0x10D #define SIDESHOW_CMD_DELETE_APPLICATION 0x10E #define SIDESHOW_CMD_DELETE_ALL_APPLICATIONS 0x10F #define SIDESHOW_CMD_ADD_CONTENT 0x114 #define SIDESHOW_CMD_DELETE_CONTENT 0x115 #define SIDESHOW_CMD_DELETE_ALL_CONTENT 0x116 #define SIDESHOW_CMD_GET_SUPPORTED_ENDPOINTS 0x117 #define SIDESHOW_CMD_GET_DEVICE_NAME 0x500 #define SIDESHOW_CMD_GET_MANUFACTURER 0x501 #define SIDESHOW_CMD_SYNC 0x502 #define PROPERTY_SIDESHOW_DEVICEID 1 #define PROPERTY_SIDESHOW_SCREENTYPE 2 #define PROPERTY_SIDESHOW_SCREENWIDTH 3 #define PROPERTY_SIDESHOW_SCREENHEIGHT 4 #define PROPERTY_SIDESHOW_COLORDEPTH 5 #define PROPERTY_SIDESHOW_COLORTYPE 6 #define PROPERTY_SIDESHOW_DATACACHE 7 #define PROPERTY_SIDESHOW_SUPPORTEDLANGS 8 #define PROPERTY_SIDESHOW_CURRENTLANG 9 #define PROPERTY_SIDESHOW_SUPPORTEDTHEMES 10 #define PROPERTY_SIDESHOW_IMAGEFORMAT 14 #define PROPERTY_SIDESHOW_CLIENTWIDTH 15 #define PROPERTY_SIDESHOW_CLIENTHEIGHT 16 #define PROPERTY_SIDESHOW_DEVICEICON 17 #define PROPERTY_DEVICE_DEVICETYPE 15 /* Function Prototypes: */ void Sideshow_ProcessCommandPacket(void); #if defined(INCLUDE_FROM_SIDESHOWCOMMANDS_H) static void SideShow_Ping(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_Sync(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_GetCurrentUser(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_SetCurrentUser(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_GetCapabilities(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_GetString(SideShow_PacketHeader_t* const PacketHeader, void* const UnicodeStruct); static void SideShow_GetApplicationOrder(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_GetSupportedEndpoints(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_AddApplication(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_DeleteApplication(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_DeleteAllApplications(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_AddContent(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_DeleteContent(SideShow_PacketHeader_t* const PacketHeader); static void SideShow_DeleteAllContent(SideShow_PacketHeader_t* const PacketHeader); #endif #endif a> 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402