| 1 | /*************************************************************************** |
|---|
| 2 | * Copyright (c) 2003-2007, Broadcom Corporation |
|---|
| 3 | * All Rights Reserved |
|---|
| 4 | * Confidential Property of Broadcom Corporation |
|---|
| 5 | * |
|---|
| 6 | * THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE |
|---|
| 7 | * AGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR |
|---|
| 8 | * EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. |
|---|
| 9 | * |
|---|
| 10 | * $brcm_Workfile: bsettop_fileio.c $ |
|---|
| 11 | * $brcm_Revision: 2 $ |
|---|
| 12 | * $brcm_Date: 11/12/07 2:34p $ |
|---|
| 13 | * |
|---|
| 14 | * Module Description: |
|---|
| 15 | * |
|---|
| 16 | * Revision History: |
|---|
| 17 | * |
|---|
| 18 | * $brcm_Log: /BSEAV/api/src/nexus/bsettop_fileio.c $ |
|---|
| 19 | * |
|---|
| 20 | * 2 11/12/07 2:34p erickson |
|---|
| 21 | * PR36068: update |
|---|
| 22 | * |
|---|
| 23 | ***************************************************************************/ |
|---|
| 24 | #include "bsettop_impl.h" |
|---|
| 25 | |
|---|
| 26 | BDBG_MODULE(fileio); |
|---|
| 27 | |
|---|
| 28 | brecord_file_t bfile_posix_out(const char *fname, const char *indexname) |
|---|
| 29 | { |
|---|
| 30 | BSTD_UNUSED(fname); |
|---|
| 31 | BSTD_UNUSED(indexname); |
|---|
| 32 | BSETTOP_ERROR(berr_not_supported); |
|---|
| 33 | return NULL; |
|---|
| 34 | } |
|---|
| 35 | |
|---|
| 36 | brecord_file_t bfile_posix_out_network(const char *fname, const char *indexname, const bsocket_params *params) |
|---|
| 37 | { |
|---|
| 38 | BSTD_UNUSED(fname); |
|---|
| 39 | BSTD_UNUSED(indexname); |
|---|
| 40 | BSTD_UNUSED(params); |
|---|
| 41 | BSETTOP_ERROR(berr_not_supported); |
|---|
| 42 | return NULL; |
|---|
| 43 | } |
|---|
| 44 | |
|---|
| 45 | bplayback_file_t bfile_posix_in(const char *fname, const char *indexname) |
|---|
| 46 | { |
|---|
| 47 | BSTD_UNUSED(fname); |
|---|
| 48 | BSTD_UNUSED(indexname); |
|---|
| 49 | BSETTOP_ERROR(berr_not_supported); |
|---|
| 50 | return NULL; |
|---|
| 51 | } |
|---|
| 52 | |
|---|
| 53 | brecord_file_t bfile_chunk_out(const char *fname, const char *indexname, brecord_file_t (*open_out)(const char *fname, const char *indexname)) |
|---|
| 54 | { |
|---|
| 55 | BSTD_UNUSED(fname); |
|---|
| 56 | BSTD_UNUSED(indexname); |
|---|
| 57 | BSTD_UNUSED(open_out); |
|---|
| 58 | BSETTOP_ERROR(berr_not_supported); |
|---|
| 59 | return NULL; |
|---|
| 60 | } |
|---|
| 61 | |
|---|
| 62 | bplayback_file_t bfile_chunk_in(const char *fname, const char *indexname, bplayback_file_t (*open_in)(const char *fname, const char *indexname)) |
|---|
| 63 | { |
|---|
| 64 | BSTD_UNUSED(fname); |
|---|
| 65 | BSTD_UNUSED(indexname); |
|---|
| 66 | BSTD_UNUSED(open_in); |
|---|
| 67 | BSETTOP_ERROR(berr_not_supported); |
|---|
| 68 | return NULL; |
|---|
| 69 | } |
|---|
| 70 | |
|---|