feat: Add enhanced EXI viewer with XML decode capability
- Implement complete CurrentDemandReq/CurrentDemandRes parsing (24 total fields) - Add enhanced_exi_viewer.c with detailed message analysis - Support -decode option for clean XML output (file-ready format) - Enable ISO1, ISO2, DIN codec support in build configuration - Fix C99 compatibility issues in makefiles (change -ansi to -std=c99) - Create test utilities for hex string to EXI conversion - Generate test files: test3.exi (CurrentDemandRes), test4.exi (CurrentDemandReq) Features: * Dual output modes: detailed analysis (default) vs XML (-decode) * Complete V2G message type detection and parsing * Session ID display in hex and ASCII formats * Voltage/current/power readings with proper units * All optional fields and status flags supported 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
BIN
Debug/OpenV2G.exe
Normal file
BIN
Debug/OpenV2G.exe
Normal file
Binary file not shown.
BIN
Debug/decoded_output.exi
Normal file
BIN
Debug/decoded_output.exi
Normal file
Binary file not shown.
51
Debug/makefile
Normal file
51
Debug/makefile
Normal file
@@ -0,0 +1,51 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
-include ../makefile.init
|
||||
|
||||
RM := rm -rf
|
||||
|
||||
# All of the sources participating in the build are defined here
|
||||
-include sources.mk
|
||||
-include src/xmldsig/subdir.mk
|
||||
-include src/transport/subdir.mk
|
||||
-include src/test/subdir.mk
|
||||
-include src/iso2/subdir.mk
|
||||
-include src/iso1/subdir.mk
|
||||
-include src/din/subdir.mk
|
||||
-include src/codec/subdir.mk
|
||||
-include src/appHandshake/subdir.mk
|
||||
-include subdir.mk
|
||||
-include objects.mk
|
||||
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
ifneq ($(strip $(C_DEPS)),)
|
||||
-include $(C_DEPS)
|
||||
endif
|
||||
endif
|
||||
|
||||
-include ../makefile.defs
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
|
||||
# All Target
|
||||
all: OpenV2G.exe
|
||||
|
||||
# Tool invocations
|
||||
OpenV2G.exe: $(OBJS) $(USER_OBJS)
|
||||
@echo 'Building target: $@'
|
||||
@echo 'Invoking: MinGW C Linker'
|
||||
gcc -o "OpenV2G.exe" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||
@echo 'Finished building target: $@'
|
||||
@echo ' '
|
||||
|
||||
# Other Targets
|
||||
clean:
|
||||
-$(RM) $(EXECUTABLES)$(OBJS)$(C_DEPS) OpenV2G.exe
|
||||
-@echo ' '
|
||||
|
||||
.PHONY: all clean dependents
|
||||
.SECONDARY:
|
||||
|
||||
-include ../makefile.targets
|
||||
8
Debug/objects.mk
Normal file
8
Debug/objects.mk
Normal file
@@ -0,0 +1,8 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
USER_OBJS :=
|
||||
|
||||
LIBS :=
|
||||
|
||||
24
Debug/sources.mk
Normal file
24
Debug/sources.mk
Normal file
@@ -0,0 +1,24 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
OBJ_SRCS :=
|
||||
ASM_SRCS :=
|
||||
C_SRCS :=
|
||||
S_UPPER_SRCS :=
|
||||
O_SRCS :=
|
||||
EXECUTABLES :=
|
||||
OBJS :=
|
||||
C_DEPS :=
|
||||
|
||||
# Every subdirectory with source files must be described here
|
||||
SUBDIRS := \
|
||||
src/xmldsig \
|
||||
src/transport \
|
||||
src/test \
|
||||
src/iso2 \
|
||||
src/iso1 \
|
||||
src/din \
|
||||
src/codec \
|
||||
src/appHandshake \
|
||||
|
||||
10
Debug/src/appHandshake/appHandEXIDatatypes.d
Normal file
10
Debug/src/appHandshake/appHandEXIDatatypes.d
Normal file
@@ -0,0 +1,10 @@
|
||||
src/appHandshake/appHandEXIDatatypes.d: \
|
||||
../src/appHandshake/appHandEXIDatatypes.c \
|
||||
../src/appHandshake/appHandEXIDatatypes.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
BIN
Debug/src/appHandshake/appHandEXIDatatypes.o
Normal file
BIN
Debug/src/appHandshake/appHandEXIDatatypes.o
Normal file
Binary file not shown.
25
Debug/src/appHandshake/appHandEXIDatatypesDecoder.d
Normal file
25
Debug/src/appHandshake/appHandEXIDatatypesDecoder.d
Normal file
@@ -0,0 +1,25 @@
|
||||
src/appHandshake/appHandEXIDatatypesDecoder.d: \
|
||||
../src/appHandshake/appHandEXIDatatypesDecoder.c \
|
||||
../src/appHandshake/appHandEXIDatatypesDecoder.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/appHandshake/appHandEXIDatatypes.h \
|
||||
../src/codec/DecoderChannel.h ../src/codec/EXIOptions.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIHeaderDecoder.h \
|
||||
../src/codec/ErrorCodes.h
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypesDecoder.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypes.h:
|
||||
|
||||
../src/codec/DecoderChannel.h:
|
||||
|
||||
../src/codec/EXIOptions.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIHeaderDecoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/appHandshake/appHandEXIDatatypesDecoder.o
Normal file
BIN
Debug/src/appHandshake/appHandEXIDatatypesDecoder.o
Normal file
Binary file not shown.
22
Debug/src/appHandshake/appHandEXIDatatypesEncoder.d
Normal file
22
Debug/src/appHandshake/appHandEXIDatatypesEncoder.d
Normal file
@@ -0,0 +1,22 @@
|
||||
src/appHandshake/appHandEXIDatatypesEncoder.d: \
|
||||
../src/appHandshake/appHandEXIDatatypesEncoder.c \
|
||||
../src/appHandshake/appHandEXIDatatypesEncoder.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/appHandshake/appHandEXIDatatypes.h \
|
||||
../src/codec/EncoderChannel.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIHeaderEncoder.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypesEncoder.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypes.h:
|
||||
|
||||
../src/codec/EncoderChannel.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIHeaderEncoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/appHandshake/appHandEXIDatatypesEncoder.o
Normal file
BIN
Debug/src/appHandshake/appHandEXIDatatypesEncoder.o
Normal file
Binary file not shown.
30
Debug/src/appHandshake/subdir.mk
Normal file
30
Debug/src/appHandshake/subdir.mk
Normal file
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/appHandshake/appHandEXIDatatypes.c \
|
||||
../src/appHandshake/appHandEXIDatatypesDecoder.c \
|
||||
../src/appHandshake/appHandEXIDatatypesEncoder.c
|
||||
|
||||
OBJS += \
|
||||
./src/appHandshake/appHandEXIDatatypes.o \
|
||||
./src/appHandshake/appHandEXIDatatypesDecoder.o \
|
||||
./src/appHandshake/appHandEXIDatatypesEncoder.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/appHandshake/appHandEXIDatatypes.d \
|
||||
./src/appHandshake/appHandEXIDatatypesDecoder.d \
|
||||
./src/appHandshake/appHandEXIDatatypesEncoder.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/appHandshake/%.o: ../src/appHandshake/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"../src/codec" -I"../src/din" -I"../src/iso1" -I"../src/iso2" -I"../src/xmldsig" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
||||
11
Debug/src/codec/BitInputStream.d
Normal file
11
Debug/src/codec/BitInputStream.d
Normal file
@@ -0,0 +1,11 @@
|
||||
src/codec/BitInputStream.d: ../src/codec/BitInputStream.c \
|
||||
../src/codec/BitInputStream.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/codec/BitInputStream.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/codec/BitInputStream.o
Normal file
BIN
Debug/src/codec/BitInputStream.o
Normal file
Binary file not shown.
11
Debug/src/codec/BitOutputStream.d
Normal file
11
Debug/src/codec/BitOutputStream.d
Normal file
@@ -0,0 +1,11 @@
|
||||
src/codec/BitOutputStream.d: ../src/codec/BitOutputStream.c \
|
||||
../src/codec/BitOutputStream.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/codec/BitOutputStream.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/codec/BitOutputStream.o
Normal file
BIN
Debug/src/codec/BitOutputStream.o
Normal file
Binary file not shown.
8
Debug/src/codec/ByteStream.d
Normal file
8
Debug/src/codec/ByteStream.d
Normal file
@@ -0,0 +1,8 @@
|
||||
src/codec/ByteStream.d: ../src/codec/ByteStream.c ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/codec/ByteStream.o
Normal file
BIN
Debug/src/codec/ByteStream.o
Normal file
Binary file not shown.
19
Debug/src/codec/DecoderChannel.d
Normal file
19
Debug/src/codec/DecoderChannel.d
Normal file
@@ -0,0 +1,19 @@
|
||||
src/codec/DecoderChannel.d: ../src/codec/DecoderChannel.c \
|
||||
../src/codec/DecoderChannel.h ../src/codec/EXIOptions.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/codec/BitInputStream.h ../src/codec/MethodsBag.h \
|
||||
../src/codec/ErrorCodes.h
|
||||
|
||||
../src/codec/DecoderChannel.h:
|
||||
|
||||
../src/codec/EXIOptions.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/BitInputStream.h:
|
||||
|
||||
../src/codec/MethodsBag.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/codec/DecoderChannel.o
Normal file
BIN
Debug/src/codec/DecoderChannel.o
Normal file
Binary file not shown.
19
Debug/src/codec/EXIHeaderDecoder.d
Normal file
19
Debug/src/codec/EXIHeaderDecoder.d
Normal file
@@ -0,0 +1,19 @@
|
||||
src/codec/EXIHeaderDecoder.d: ../src/codec/EXIHeaderDecoder.c \
|
||||
../src/codec/EXIHeaderDecoder.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/codec/BitInputStream.h \
|
||||
../src/codec/DecoderChannel.h ../src/codec/EXIOptions.h \
|
||||
../src/codec/ErrorCodes.h
|
||||
|
||||
../src/codec/EXIHeaderDecoder.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/BitInputStream.h:
|
||||
|
||||
../src/codec/DecoderChannel.h:
|
||||
|
||||
../src/codec/EXIOptions.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/codec/EXIHeaderDecoder.o
Normal file
BIN
Debug/src/codec/EXIHeaderDecoder.o
Normal file
Binary file not shown.
14
Debug/src/codec/EXIHeaderEncoder.d
Normal file
14
Debug/src/codec/EXIHeaderEncoder.d
Normal file
@@ -0,0 +1,14 @@
|
||||
src/codec/EXIHeaderEncoder.d: ../src/codec/EXIHeaderEncoder.c \
|
||||
../src/codec/EXIHeaderEncoder.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/codec/BitOutputStream.h \
|
||||
../src/codec/EncoderChannel.h
|
||||
|
||||
../src/codec/EXIHeaderEncoder.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/BitOutputStream.h:
|
||||
|
||||
../src/codec/EncoderChannel.h:
|
||||
BIN
Debug/src/codec/EXIHeaderEncoder.o
Normal file
BIN
Debug/src/codec/EXIHeaderEncoder.o
Normal file
Binary file not shown.
19
Debug/src/codec/EncoderChannel.d
Normal file
19
Debug/src/codec/EncoderChannel.d
Normal file
@@ -0,0 +1,19 @@
|
||||
src/codec/EncoderChannel.d: ../src/codec/EncoderChannel.c \
|
||||
../src/codec/EncoderChannel.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/codec/EXIOptions.h \
|
||||
../src/codec/BitOutputStream.h ../src/codec/ErrorCodes.h \
|
||||
../src/codec/MethodsBag.h
|
||||
|
||||
../src/codec/EncoderChannel.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/EXIOptions.h:
|
||||
|
||||
../src/codec/BitOutputStream.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
|
||||
../src/codec/MethodsBag.h:
|
||||
BIN
Debug/src/codec/EncoderChannel.o
Normal file
BIN
Debug/src/codec/EncoderChannel.o
Normal file
Binary file not shown.
6
Debug/src/codec/MethodsBag.d
Normal file
6
Debug/src/codec/MethodsBag.d
Normal file
@@ -0,0 +1,6 @@
|
||||
src/codec/MethodsBag.d: ../src/codec/MethodsBag.c \
|
||||
../src/codec/MethodsBag.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/codec/MethodsBag.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/codec/MethodsBag.o
Normal file
BIN
Debug/src/codec/MethodsBag.o
Normal file
Binary file not shown.
45
Debug/src/codec/subdir.mk
Normal file
45
Debug/src/codec/subdir.mk
Normal file
@@ -0,0 +1,45 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/codec/BitInputStream.c \
|
||||
../src/codec/BitOutputStream.c \
|
||||
../src/codec/ByteStream.c \
|
||||
../src/codec/DecoderChannel.c \
|
||||
../src/codec/EXIHeaderDecoder.c \
|
||||
../src/codec/EXIHeaderEncoder.c \
|
||||
../src/codec/EncoderChannel.c \
|
||||
../src/codec/MethodsBag.c
|
||||
|
||||
OBJS += \
|
||||
./src/codec/BitInputStream.o \
|
||||
./src/codec/BitOutputStream.o \
|
||||
./src/codec/ByteStream.o \
|
||||
./src/codec/DecoderChannel.o \
|
||||
./src/codec/EXIHeaderDecoder.o \
|
||||
./src/codec/EXIHeaderEncoder.o \
|
||||
./src/codec/EncoderChannel.o \
|
||||
./src/codec/MethodsBag.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/codec/BitInputStream.d \
|
||||
./src/codec/BitOutputStream.d \
|
||||
./src/codec/ByteStream.d \
|
||||
./src/codec/DecoderChannel.d \
|
||||
./src/codec/EXIHeaderDecoder.d \
|
||||
./src/codec/EXIHeaderEncoder.d \
|
||||
./src/codec/EncoderChannel.d \
|
||||
./src/codec/MethodsBag.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/codec/%.o: ../src/codec/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"../src/codec" -I"../src/din" -I"../src/iso1" -I"../src/iso2" -I"../src/xmldsig" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
||||
9
Debug/src/din/dinEXIDatatypes.d
Normal file
9
Debug/src/din/dinEXIDatatypes.d
Normal file
@@ -0,0 +1,9 @@
|
||||
src/din/dinEXIDatatypes.d: ../src/din/dinEXIDatatypes.c \
|
||||
../src/din/dinEXIDatatypes.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h
|
||||
|
||||
../src/din/dinEXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
BIN
Debug/src/din/dinEXIDatatypes.o
Normal file
BIN
Debug/src/din/dinEXIDatatypes.o
Normal file
Binary file not shown.
24
Debug/src/din/dinEXIDatatypesDecoder.d
Normal file
24
Debug/src/din/dinEXIDatatypesDecoder.d
Normal file
@@ -0,0 +1,24 @@
|
||||
src/din/dinEXIDatatypesDecoder.d: ../src/din/dinEXIDatatypesDecoder.c \
|
||||
../src/din/dinEXIDatatypesDecoder.h ../src/din/dinEXIDatatypes.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/codec/DecoderChannel.h ../src/codec/EXIOptions.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIHeaderDecoder.h \
|
||||
../src/codec/ErrorCodes.h
|
||||
|
||||
../src/din/dinEXIDatatypesDecoder.h:
|
||||
|
||||
../src/din/dinEXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/DecoderChannel.h:
|
||||
|
||||
../src/codec/EXIOptions.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIHeaderDecoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/din/dinEXIDatatypesDecoder.o
Normal file
BIN
Debug/src/din/dinEXIDatatypesDecoder.o
Normal file
Binary file not shown.
21
Debug/src/din/dinEXIDatatypesEncoder.d
Normal file
21
Debug/src/din/dinEXIDatatypesEncoder.d
Normal file
@@ -0,0 +1,21 @@
|
||||
src/din/dinEXIDatatypesEncoder.d: ../src/din/dinEXIDatatypesEncoder.c \
|
||||
../src/din/dinEXIDatatypesEncoder.h ../src/din/dinEXIDatatypes.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/codec/EncoderChannel.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIHeaderEncoder.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/din/dinEXIDatatypesEncoder.h:
|
||||
|
||||
../src/din/dinEXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/EncoderChannel.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIHeaderEncoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/din/dinEXIDatatypesEncoder.o
Normal file
BIN
Debug/src/din/dinEXIDatatypesEncoder.o
Normal file
Binary file not shown.
30
Debug/src/din/subdir.mk
Normal file
30
Debug/src/din/subdir.mk
Normal file
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/din/dinEXIDatatypes.c \
|
||||
../src/din/dinEXIDatatypesDecoder.c \
|
||||
../src/din/dinEXIDatatypesEncoder.c
|
||||
|
||||
OBJS += \
|
||||
./src/din/dinEXIDatatypes.o \
|
||||
./src/din/dinEXIDatatypesDecoder.o \
|
||||
./src/din/dinEXIDatatypesEncoder.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/din/dinEXIDatatypes.d \
|
||||
./src/din/dinEXIDatatypesDecoder.d \
|
||||
./src/din/dinEXIDatatypesEncoder.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/din/%.o: ../src/din/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"../src/codec" -I"../src/din" -I"../src/iso1" -I"../src/iso2" -I"../src/xmldsig" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
||||
9
Debug/src/iso1/iso1EXIDatatypes.d
Normal file
9
Debug/src/iso1/iso1EXIDatatypes.d
Normal file
@@ -0,0 +1,9 @@
|
||||
src/iso1/iso1EXIDatatypes.d: ../src/iso1/iso1EXIDatatypes.c \
|
||||
../src/iso1/iso1EXIDatatypes.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h
|
||||
|
||||
../src/iso1/iso1EXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
BIN
Debug/src/iso1/iso1EXIDatatypes.o
Normal file
BIN
Debug/src/iso1/iso1EXIDatatypes.o
Normal file
Binary file not shown.
24
Debug/src/iso1/iso1EXIDatatypesDecoder.d
Normal file
24
Debug/src/iso1/iso1EXIDatatypesDecoder.d
Normal file
@@ -0,0 +1,24 @@
|
||||
src/iso1/iso1EXIDatatypesDecoder.d: ../src/iso1/iso1EXIDatatypesDecoder.c \
|
||||
../src/iso1/iso1EXIDatatypesDecoder.h ../src/iso1/iso1EXIDatatypes.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/codec/DecoderChannel.h ../src/codec/EXIOptions.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIHeaderDecoder.h \
|
||||
../src/codec/ErrorCodes.h
|
||||
|
||||
../src/iso1/iso1EXIDatatypesDecoder.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/DecoderChannel.h:
|
||||
|
||||
../src/codec/EXIOptions.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIHeaderDecoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/iso1/iso1EXIDatatypesDecoder.o
Normal file
BIN
Debug/src/iso1/iso1EXIDatatypesDecoder.o
Normal file
Binary file not shown.
21
Debug/src/iso1/iso1EXIDatatypesEncoder.d
Normal file
21
Debug/src/iso1/iso1EXIDatatypesEncoder.d
Normal file
@@ -0,0 +1,21 @@
|
||||
src/iso1/iso1EXIDatatypesEncoder.d: ../src/iso1/iso1EXIDatatypesEncoder.c \
|
||||
../src/iso1/iso1EXIDatatypesEncoder.h ../src/iso1/iso1EXIDatatypes.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/codec/EncoderChannel.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIHeaderEncoder.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/iso1/iso1EXIDatatypesEncoder.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/EncoderChannel.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIHeaderEncoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/iso1/iso1EXIDatatypesEncoder.o
Normal file
BIN
Debug/src/iso1/iso1EXIDatatypesEncoder.o
Normal file
Binary file not shown.
30
Debug/src/iso1/subdir.mk
Normal file
30
Debug/src/iso1/subdir.mk
Normal file
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/iso1/iso1EXIDatatypes.c \
|
||||
../src/iso1/iso1EXIDatatypesDecoder.c \
|
||||
../src/iso1/iso1EXIDatatypesEncoder.c
|
||||
|
||||
OBJS += \
|
||||
./src/iso1/iso1EXIDatatypes.o \
|
||||
./src/iso1/iso1EXIDatatypesDecoder.o \
|
||||
./src/iso1/iso1EXIDatatypesEncoder.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/iso1/iso1EXIDatatypes.d \
|
||||
./src/iso1/iso1EXIDatatypesDecoder.d \
|
||||
./src/iso1/iso1EXIDatatypesEncoder.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/iso1/%.o: ../src/iso1/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"../src/codec" -I"../src/din" -I"../src/iso1" -I"../src/iso2" -I"../src/xmldsig" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
||||
9
Debug/src/iso2/iso2EXIDatatypes.d
Normal file
9
Debug/src/iso2/iso2EXIDatatypes.d
Normal file
@@ -0,0 +1,9 @@
|
||||
src/iso2/iso2EXIDatatypes.d: ../src/iso2/iso2EXIDatatypes.c \
|
||||
../src/iso2/iso2EXIDatatypes.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h
|
||||
|
||||
../src/iso2/iso2EXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
BIN
Debug/src/iso2/iso2EXIDatatypes.o
Normal file
BIN
Debug/src/iso2/iso2EXIDatatypes.o
Normal file
Binary file not shown.
24
Debug/src/iso2/iso2EXIDatatypesDecoder.d
Normal file
24
Debug/src/iso2/iso2EXIDatatypesDecoder.d
Normal file
@@ -0,0 +1,24 @@
|
||||
src/iso2/iso2EXIDatatypesDecoder.d: ../src/iso2/iso2EXIDatatypesDecoder.c \
|
||||
../src/iso2/iso2EXIDatatypesDecoder.h ../src/iso2/iso2EXIDatatypes.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/codec/DecoderChannel.h ../src/codec/EXIOptions.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIHeaderDecoder.h \
|
||||
../src/codec/ErrorCodes.h
|
||||
|
||||
../src/iso2/iso2EXIDatatypesDecoder.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/DecoderChannel.h:
|
||||
|
||||
../src/codec/EXIOptions.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIHeaderDecoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/iso2/iso2EXIDatatypesDecoder.o
Normal file
BIN
Debug/src/iso2/iso2EXIDatatypesDecoder.o
Normal file
Binary file not shown.
21
Debug/src/iso2/iso2EXIDatatypesEncoder.d
Normal file
21
Debug/src/iso2/iso2EXIDatatypesEncoder.d
Normal file
@@ -0,0 +1,21 @@
|
||||
src/iso2/iso2EXIDatatypesEncoder.d: ../src/iso2/iso2EXIDatatypesEncoder.c \
|
||||
../src/iso2/iso2EXIDatatypesEncoder.h ../src/iso2/iso2EXIDatatypes.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/codec/EncoderChannel.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIHeaderEncoder.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/iso2/iso2EXIDatatypesEncoder.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/EncoderChannel.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIHeaderEncoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/iso2/iso2EXIDatatypesEncoder.o
Normal file
BIN
Debug/src/iso2/iso2EXIDatatypesEncoder.o
Normal file
Binary file not shown.
30
Debug/src/iso2/subdir.mk
Normal file
30
Debug/src/iso2/subdir.mk
Normal file
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/iso2/iso2EXIDatatypes.c \
|
||||
../src/iso2/iso2EXIDatatypesDecoder.c \
|
||||
../src/iso2/iso2EXIDatatypesEncoder.c
|
||||
|
||||
OBJS += \
|
||||
./src/iso2/iso2EXIDatatypes.o \
|
||||
./src/iso2/iso2EXIDatatypesDecoder.o \
|
||||
./src/iso2/iso2EXIDatatypesEncoder.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/iso2/iso2EXIDatatypes.d \
|
||||
./src/iso2/iso2EXIDatatypesDecoder.d \
|
||||
./src/iso2/iso2EXIDatatypesEncoder.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/iso2/%.o: ../src/iso2/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"../src/codec" -I"../src/din" -I"../src/iso1" -I"../src/iso2" -I"../src/xmldsig" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
||||
3
Debug/src/test/main.d
Normal file
3
Debug/src/test/main.d
Normal file
@@ -0,0 +1,3 @@
|
||||
src/test/main.d: ../src/test/main.c ../src/test/main.h
|
||||
|
||||
../src/test/main.h:
|
||||
BIN
Debug/src/test/main.o
Normal file
BIN
Debug/src/test/main.o
Normal file
Binary file not shown.
31
Debug/src/test/main_databinder.d
Normal file
31
Debug/src/test/main_databinder.d
Normal file
@@ -0,0 +1,31 @@
|
||||
src/test/main_databinder.d: ../src/test/main_databinder.c \
|
||||
../src/iso1/iso1EXIDatatypes.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/iso1/iso1EXIDatatypesEncoder.h \
|
||||
../src/iso1/iso1EXIDatatypes.h ../src/iso1/iso1EXIDatatypesDecoder.h \
|
||||
../src/iso2/iso2EXIDatatypes.h ../src/iso2/iso2EXIDatatypesEncoder.h \
|
||||
../src/iso2/iso2EXIDatatypes.h ../src/iso2/iso2EXIDatatypesDecoder.h \
|
||||
../src/codec/ByteStream.h ../src/codec/EXITypes.h
|
||||
|
||||
../src/iso1/iso1EXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypesEncoder.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypes.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypesDecoder.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypes.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypesEncoder.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypes.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypesDecoder.h:
|
||||
|
||||
../src/codec/ByteStream.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
BIN
Debug/src/test/main_databinder.o
Normal file
BIN
Debug/src/test/main_databinder.o
Normal file
Binary file not shown.
53
Debug/src/test/main_example.d
Normal file
53
Debug/src/test/main_example.d
Normal file
@@ -0,0 +1,53 @@
|
||||
src/test/main_example.d: ../src/test/main_example.c \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/appHandshake/appHandEXIDatatypes.h \
|
||||
../src/appHandshake/appHandEXIDatatypesEncoder.h \
|
||||
../src/appHandshake/appHandEXIDatatypes.h \
|
||||
../src/appHandshake/appHandEXIDatatypesDecoder.h \
|
||||
../src/din/dinEXIDatatypes.h ../src/din/dinEXIDatatypesEncoder.h \
|
||||
../src/din/dinEXIDatatypes.h ../src/din/dinEXIDatatypesDecoder.h \
|
||||
../src/xmldsig/xmldsigEXIDatatypes.h ../src/iso1/iso1EXIDatatypes.h \
|
||||
../src/iso1/iso1EXIDatatypesEncoder.h ../src/iso1/iso1EXIDatatypes.h \
|
||||
../src/iso1/iso1EXIDatatypesDecoder.h ../src/iso2/iso2EXIDatatypes.h \
|
||||
../src/iso2/iso2EXIDatatypesEncoder.h ../src/iso2/iso2EXIDatatypes.h \
|
||||
../src/iso2/iso2EXIDatatypesDecoder.h ../src/transport/v2gtp.h
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypes.h:
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypesEncoder.h:
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypes.h:
|
||||
|
||||
../src/appHandshake/appHandEXIDatatypesDecoder.h:
|
||||
|
||||
../src/din/dinEXIDatatypes.h:
|
||||
|
||||
../src/din/dinEXIDatatypesEncoder.h:
|
||||
|
||||
../src/din/dinEXIDatatypes.h:
|
||||
|
||||
../src/din/dinEXIDatatypesDecoder.h:
|
||||
|
||||
../src/xmldsig/xmldsigEXIDatatypes.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypes.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypesEncoder.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypes.h:
|
||||
|
||||
../src/iso1/iso1EXIDatatypesDecoder.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypes.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypesEncoder.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypes.h:
|
||||
|
||||
../src/iso2/iso2EXIDatatypesDecoder.h:
|
||||
|
||||
../src/transport/v2gtp.h:
|
||||
BIN
Debug/src/test/main_example.o
Normal file
BIN
Debug/src/test/main_example.o
Normal file
Binary file not shown.
30
Debug/src/test/subdir.mk
Normal file
30
Debug/src/test/subdir.mk
Normal file
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/test/main.c \
|
||||
../src/test/main_databinder.c \
|
||||
../src/test/main_example.c
|
||||
|
||||
OBJS += \
|
||||
./src/test/main.o \
|
||||
./src/test/main_databinder.o \
|
||||
./src/test/main_example.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/test/main.d \
|
||||
./src/test/main_databinder.d \
|
||||
./src/test/main_example.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/test/%.o: ../src/test/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"../src/codec" -I"../src/din" -I"../src/iso1" -I"../src/iso2" -I"../src/xmldsig" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
||||
24
Debug/src/transport/subdir.mk
Normal file
24
Debug/src/transport/subdir.mk
Normal file
@@ -0,0 +1,24 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/transport/v2gtp.c
|
||||
|
||||
OBJS += \
|
||||
./src/transport/v2gtp.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/transport/v2gtp.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/transport/%.o: ../src/transport/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"../src/codec" -I"../src/din" -I"../src/iso1" -I"../src/iso2" -I"../src/xmldsig" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
||||
3
Debug/src/transport/v2gtp.d
Normal file
3
Debug/src/transport/v2gtp.d
Normal file
@@ -0,0 +1,3 @@
|
||||
src/transport/v2gtp.d: ../src/transport/v2gtp.c ../src/transport/v2gtp.h
|
||||
|
||||
../src/transport/v2gtp.h:
|
||||
BIN
Debug/src/transport/v2gtp.o
Normal file
BIN
Debug/src/transport/v2gtp.o
Normal file
Binary file not shown.
30
Debug/src/xmldsig/subdir.mk
Normal file
30
Debug/src/xmldsig/subdir.mk
Normal file
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/xmldsig/xmldsigEXIDatatypes.c \
|
||||
../src/xmldsig/xmldsigEXIDatatypesDecoder.c \
|
||||
../src/xmldsig/xmldsigEXIDatatypesEncoder.c
|
||||
|
||||
OBJS += \
|
||||
./src/xmldsig/xmldsigEXIDatatypes.o \
|
||||
./src/xmldsig/xmldsigEXIDatatypesDecoder.o \
|
||||
./src/xmldsig/xmldsigEXIDatatypesEncoder.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/xmldsig/xmldsigEXIDatatypes.d \
|
||||
./src/xmldsig/xmldsigEXIDatatypesDecoder.d \
|
||||
./src/xmldsig/xmldsigEXIDatatypesEncoder.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/xmldsig/%.o: ../src/xmldsig/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"../src/codec" -I"../src/din" -I"../src/iso1" -I"../src/iso2" -I"../src/xmldsig" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
||||
9
Debug/src/xmldsig/xmldsigEXIDatatypes.d
Normal file
9
Debug/src/xmldsig/xmldsigEXIDatatypes.d
Normal file
@@ -0,0 +1,9 @@
|
||||
src/xmldsig/xmldsigEXIDatatypes.d: ../src/xmldsig/xmldsigEXIDatatypes.c \
|
||||
../src/xmldsig/xmldsigEXIDatatypes.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h
|
||||
|
||||
../src/xmldsig/xmldsigEXIDatatypes.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
BIN
Debug/src/xmldsig/xmldsigEXIDatatypes.o
Normal file
BIN
Debug/src/xmldsig/xmldsigEXIDatatypes.o
Normal file
Binary file not shown.
23
Debug/src/xmldsig/xmldsigEXIDatatypesDecoder.d
Normal file
23
Debug/src/xmldsig/xmldsigEXIDatatypesDecoder.d
Normal file
@@ -0,0 +1,23 @@
|
||||
src/xmldsig/xmldsigEXIDatatypesDecoder.d: \
|
||||
../src/xmldsig/xmldsigEXIDatatypesDecoder.c \
|
||||
../src/xmldsig/xmldsigEXIDatatypesDecoder.h \
|
||||
../src/xmldsig/xmldsigEXIDatatypes.h ../src/codec/DecoderChannel.h \
|
||||
../src/codec/EXIOptions.h ../src/codec/EXITypes.h \
|
||||
../src/codec/EXIConfig.h ../src/codec/EXIHeaderDecoder.h \
|
||||
../src/codec/ErrorCodes.h
|
||||
|
||||
../src/xmldsig/xmldsigEXIDatatypesDecoder.h:
|
||||
|
||||
../src/xmldsig/xmldsigEXIDatatypes.h:
|
||||
|
||||
../src/codec/DecoderChannel.h:
|
||||
|
||||
../src/codec/EXIOptions.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/EXIHeaderDecoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/xmldsig/xmldsigEXIDatatypesDecoder.o
Normal file
BIN
Debug/src/xmldsig/xmldsigEXIDatatypesDecoder.o
Normal file
Binary file not shown.
20
Debug/src/xmldsig/xmldsigEXIDatatypesEncoder.d
Normal file
20
Debug/src/xmldsig/xmldsigEXIDatatypesEncoder.d
Normal file
@@ -0,0 +1,20 @@
|
||||
src/xmldsig/xmldsigEXIDatatypesEncoder.d: \
|
||||
../src/xmldsig/xmldsigEXIDatatypesEncoder.c \
|
||||
../src/xmldsig/xmldsigEXIDatatypesEncoder.h \
|
||||
../src/xmldsig/xmldsigEXIDatatypes.h ../src/codec/EncoderChannel.h \
|
||||
../src/codec/EXITypes.h ../src/codec/EXIConfig.h \
|
||||
../src/codec/EXIHeaderEncoder.h ../src/codec/ErrorCodes.h
|
||||
|
||||
../src/xmldsig/xmldsigEXIDatatypesEncoder.h:
|
||||
|
||||
../src/xmldsig/xmldsigEXIDatatypes.h:
|
||||
|
||||
../src/codec/EncoderChannel.h:
|
||||
|
||||
../src/codec/EXITypes.h:
|
||||
|
||||
../src/codec/EXIConfig.h:
|
||||
|
||||
../src/codec/EXIHeaderEncoder.h:
|
||||
|
||||
../src/codec/ErrorCodes.h:
|
||||
BIN
Debug/src/xmldsig/xmldsigEXIDatatypesEncoder.o
Normal file
BIN
Debug/src/xmldsig/xmldsigEXIDatatypesEncoder.o
Normal file
Binary file not shown.
BIN
Debug/test.exi
Normal file
BIN
Debug/test.exi
Normal file
Binary file not shown.
1
Debug/test.txt
Normal file
1
Debug/test.txt
Normal file
@@ -0,0 +1 @@
|
||||
8034282e23dd1022334455668660dd00000000002c06fffe80000000000000122233fffe445566fe80000000000000823428fffe2e23ddc365d121007d208c2ce1d2295018111c493a00000101fe8001000000001080980210509008c0c0c0e0c52110003200
|
||||
Reference in New Issue
Block a user