LibItsRtcmem_EncdecDeclarations.ttcn 1.97 KB
Newer Older
Yann Garcia's avatar
Yann Garcia committed
module LibItsRtcmem_EncdecDeclarations {
    
    // LibIts
    import from RTCMEM_PDU_Descriptions language "ASN.1:1997" all;
    
    // LibItsRtcmem
    import from LibItsRtcmem_TypesAndValues all; 
    import from LibItsRtcmem_TestSystem all; 

    external function fx_enc_RtcmemReq (RtcmemReq p) return bitstring
        with {extension "prototype(convert) encode(LibIts_Interface)"}
    
    external function fx_dec_RtcmemReq (inout bitstring b, out RtcmemReq p) return integer
        with {extension "prototype(sliding) decode(LibIts_Interface)"}

    external function fx_dec_RtcmemInd (inout bitstring b, out RtcmemInd p) return integer
        with {extension "prototype(sliding) decode(LibIts_Interface)"}
        
    external function fx_enc_RTCMEM (RTCMEM p) return bitstring
        with {extension "prototype(convert) encode(PER)"}

    external function fx_dec_RTCMEM (inout bitstring b, out RTCMEM p) return integer
        with {extension "prototype(sliding) decode(PER)"}

    external function fx_enc_UtRtcmemInitialize (UtRtcmemInitialize p) return bitstring
        with {extension "prototype(convert) encode(UpperTester)"}
    
    external function fx_enc_UtRtcmemTrigger (UtRtcmemTrigger p) return bitstring
        with {extension "prototype(convert) encode(UpperTester)"}
    
    external function fx_enc_UtRtcmemUpdate (UtRtcmemUpdate p) return bitstring
        with {extension "prototype(convert) encode(UpperTester)"}
    
    external function fx_enc_UtRtcmemTermination (UtRtcmemTermination p) return bitstring
        with {extension "prototype(convert) encode(UpperTester)"}
    
    external function fx_dec_UtRtcmemResults (inout bitstring b, out UtRtcmemResults p) return integer
        with {extension "prototype(sliding) decode(UpperTester)"}
    
    external function fx_dec_UtRtcmemEventInd (inout bitstring b, out UtRtcmemEventInd p) return integer
        with {extension "prototype(sliding) decode(UpperTester)"}
    
} // End of module LibItsRtcmem_EncdecDeclarations