提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib.SdkStructure; |
|
4 |
|
|
5 |
/** |
|
6 |
* |
|
7 |
* @author 119178 |
|
8 |
* 备份源 |
|
9 |
*/ |
|
10 |
public class NET_BACKUP_SOURCE extends SdkStructure{ |
|
11 |
public int emSourceType; // 源类型(EM_BACKUP_SOURCE_TYPE) |
|
12 |
public byte[] Reserved=new byte[4]; // 字节对齐 |
|
13 |
public byte[] szPath=new byte[256]; // 源路径,emSourceType为EM_BACKUP_SOURCE_TYPE_REALTIME时,对应格式"通道号/码流类型"。例:"1/Main" |
|
14 |
// 码流类型:Main、Extra1、Extra2、Extra3 |
|
15 |
public byte[] szRename=new byte[256]; // 备份后的文件名 |
|
16 |
public byte[] byReserved=new byte[1024]; // 保留字节 |
|
17 |
} |