LibItsDenm_EncdecDeclarations.ttcn 938 Bytes
Newer Older
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)"}
    
garciay's avatar
garciay committed
    external function fx_dec_DenmReq (inout bitstring b, out DenmReq p) return integer
        with {extension "prototype(sliding) decode(LibIts_Interface)"}

filatov's avatar
filatov committed
    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
garciay's avatar
garciay committed
        with {extension "prototype(convert) encode(PER)"}
filatov's avatar
filatov committed
    external function fx_dec_DENM (inout bitstring b, out DENM p) return integer
garciay's avatar
garciay committed
        with {extension "prototype(sliding) decode(PER)"}    
filatov's avatar
filatov committed

} // End of module LibItsDenm_EncdecDeclarations