LibItsDenm_EncdecDeclarations.ttcn 930 Bytes
Newer Older
1
2
3
4
5
6
7
8
module LibItsDenm_EncdecDeclarations {
    
    import from LibItsDenm_TestSystem all;
    import from DENM_PDU_Descriptions language "ASN.1:1997" all;
    
    external function fx_enc_DenmReq (DenmReq p) return bitstring
        with {extension "prototype(convert) encode(LibIts_Interface)"}
    
filatov's avatar
filatov committed
9
10
11
12
    external function fx_dec_DenmInd (inout bitstring b, out DenmInd p) return integer
        with {extension "prototype(sliding) decode(LibIts_Interface)"}
    
    external function fx_enc_DENM (DENM p) return bitstring
13
        with {extension "prototype(convert) encode(BER:BER_ENCODE_CER)"}
filatov's avatar
filatov committed
14
//        with {extension "prototype(convert) encode(PER)"}
15
    
filatov's avatar
filatov committed
16
17
18
19
20
    external function fx_dec_DENM (inout bitstring b, out DENM p) return integer
        with {extension "prototype(sliding) decode(BER:BER_ENCODE_CER)"}
//        with {extension "prototype(sliding) encode(PER)"}
    

21
} // End of module LibItsDenm_EncdecDeclarations