1 /*********************************************************************** 2 * AUTHOR: Marcus Overhagen 3 * FILE: MediaFiles.cpp 4 * DESCR: 5 ***********************************************************************/ 6 #include <MediaFiles.h> 7 #include "debug.h" 8 9 /************************************************************* 10 * public BMediaFiles 11 *************************************************************/ 12 13 const char BMediaFiles::B_SOUNDS[] = "XXX fixme"; /* for "types" */ 14 15 BMediaFiles::BMediaFiles() 16 { 17 UNIMPLEMENTED(); 18 } 19 20 21 /* virtual */ 22 BMediaFiles::~BMediaFiles() 23 { 24 UNIMPLEMENTED(); 25 } 26 27 28 /* virtual */ status_t 29 BMediaFiles::RewindTypes() 30 { 31 UNIMPLEMENTED(); 32 33 return B_OK; 34 } 35 36 37 /* virtual */ status_t 38 BMediaFiles::GetNextType(BString *out_type) 39 { 40 UNIMPLEMENTED(); 41 42 return B_ERROR; 43 } 44 45 46 /* virtual */ status_t 47 BMediaFiles::RewindRefs(const char *type) 48 { 49 UNIMPLEMENTED(); 50 51 return B_OK; 52 } 53 54 55 /* virtual */ status_t 56 BMediaFiles::GetNextRef(BString *out_type, 57 entry_ref *out_ref) 58 { 59 UNIMPLEMENTED(); 60 61 return B_ERROR; 62 } 63 64 65 /* virtual */ status_t 66 BMediaFiles::GetRefFor(const char *type, 67 const char *item, 68 entry_ref *out_ref) 69 { 70 UNIMPLEMENTED(); 71 72 return B_ERROR; 73 } 74 75 76 /* virtual */ status_t 77 BMediaFiles::SetRefFor(const char *type, 78 const char *item, 79 const entry_ref &ref) 80 { 81 UNIMPLEMENTED(); 82 83 return B_OK; 84 } 85 86 87 /* virtual */ status_t 88 BMediaFiles::RemoveRefFor(const char *type, 89 const char *item, 90 const entry_ref &ref) 91 { 92 UNIMPLEMENTED(); 93 94 return B_OK; 95 } 96 97 98 /* virtual */ status_t 99 BMediaFiles::RemoveItem(const char *type, 100 const char *item) 101 { 102 UNIMPLEMENTED(); 103 104 return B_OK; 105 } 106 107 /************************************************************* 108 * private BMediaFiles 109 *************************************************************/ 110 111 status_t BMediaFiles::_Reserved_MediaFiles_0(void *,...) { return B_ERROR; } 112 status_t BMediaFiles::_Reserved_MediaFiles_1(void *,...) { return B_ERROR; } 113 status_t BMediaFiles::_Reserved_MediaFiles_2(void *,...) { return B_ERROR; } 114 status_t BMediaFiles::_Reserved_MediaFiles_3(void *,...) { return B_ERROR; } 115 status_t BMediaFiles::_Reserved_MediaFiles_4(void *,...) { return B_ERROR; } 116 status_t BMediaFiles::_Reserved_MediaFiles_5(void *,...) { return B_ERROR; } 117 status_t BMediaFiles::_Reserved_MediaFiles_6(void *,...) { return B_ERROR; } 118 status_t BMediaFiles::_Reserved_MediaFiles_7(void *,...) { return B_ERROR; } 119 120