fujuntang
2022-04-28 51ccd8155f029d66366d0df8e2baf886ffd50000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef __PROTO_DUMP_H__
#define __PROTO_DUMP_H__
 
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdarg.h>
#include "soapH.h"
 
#ifdef __cplusplus
extern "C" {
#endif
 
enum LOG_TYPE {
    log_pos = 0,                          
    log_int,                            
    log_str,                          
    log_strp,                   
    log_float,                          
    log_bool,                             
    log_int64,                  
};
 
#ifdef PROTO_DEBUG
 
void dump__wsdd__ProbeMatches(struct __wsdd__ProbeMatches *rep);
void dump__GetPresetsResponse(struct _tptz__GetPresetsResponse *rep);
void dump_tds__GetCapabilitiesResponse(struct _tds__GetCapabilitiesResponse *rep);
void dump_tds__GetDeviceInformationResponse(struct _tds__GetDeviceInformationResponse *rep);
void dump_trt__GetProfilesResponse(struct _trt__GetProfilesResponse *rep);
void dump_trt__GetStreamUriResponse(struct _trt__GetStreamUriResponse *rep);
void dump_tds__GetServicesResponse(struct _tds__GetServicesResponse *rep);
void dump_tds__GetSystemDateAndTime(struct _tds__GetSystemDateAndTimeResponse *rep);
void dump_trt__GetOSDOptions(struct _trt__GetOSDOptionsResponse *rep);
void dump_trt__GetOSDs(struct _trt__GetOSDsResponse *rep);
void dump_trt__GetVideoSourcesResponse(struct _trt__GetVideoSourcesResponse *rep);
void dump_trt__GetVideoSourceConfigurationsResponse(struct _trt__GetVideoSourceConfigurationsResponse *rep);
void dump_trt__GetSnapshotUriResponse(struct _trt__GetSnapshotUriResponse *rep);
void dump_tds__GetNetworkInterfaces(struct _tds__GetNetworkInterfacesResponse *rep);
void dump_trt__GetServiceCapabilitiesResponse(struct _trt__GetServiceCapabilitiesResponse *rep);
void dump_trt__GetVideoEncoderConfigurationResponse(struct _trt__GetVideoEncoderConfigurationResponse *rep);
void dump_trt__GetVideoEncoderConfigurationsResponse(struct _trt__GetVideoEncoderConfigurationsResponse *rep);
void dump_trt__GetCompatibleVideoEncoderConfigurationsResponse(struct _trt__GetCompatibleVideoEncoderConfigurationsResponse *rep);
void dump_trt__GetVideoEncoderConfigurationOptionsResponse(struct _trt__GetVideoEncoderConfigurationOptionsResponse *rep);
void log_level_val(unsigned int level, const char *prestr, enum LOG_TYPE type, const void *val);
#else
 
#define dump__wsdd__ProbeMatches
#define dump_tds__GetCapabilitiesResponse
#define dump_tds__GetDeviceInformationResponse
#define dump_trt__GetProfilesResponse
#define dump_trt__GetStreamUriResponse
#define dump_tds__GetServicesResponse
#define dump_tds__GetSystemDateAndTime
#define dump_trt__GetOSDOptions
#define dump_trt__GetOSDs
#define dump_trt__GetVideoSourcesResponse
#define dump_trt__GetVideoSourceConfigurationsResponse
#define dump_trt__GetSnapshotUriResponse
#define dump_tds__GetNetworkInterfaces
#define dump_trt__GetServiceCapabilitiesResponse
#define dump_trt__GetVideoEncoderConfigurationResponse
#define dump_trt__GetVideoEncoderConfigurationsResponse
#define dump_trt__GetCompatibleVideoEncoderConfigurationsResponse
#define dump_trt__GetVideoEncoderConfigurationOptionsResponse
 
#endif
 
#ifdef __cplusplus
}
#endif
 
#endif