winpr/asn1: add ASN1_CreateDecoder stub
authorAustin English <austinenglish@gmail.com>
Mon, 23 Feb 2015 01:09:58 +0000 (19:09 -0600)
committerAustin English <austinenglish@gmail.com>
Mon, 23 Feb 2015 01:09:58 +0000 (19:09 -0600)
winpr/libwinpr/asn1/asn1.c

index ee11192..4ccff54 100644 (file)
@@ -313,4 +313,10 @@ void ASN1_FreeDecoded(ASN1decoding_t pDecoderInfo, void* pDataStruct, ASN1uint32
        return;
 }
 
+ASN1error_e ASN1_CreateDecoder(ASN1module_t pModule, ASN1decoding_t* ppDecoderInfo,
+        ASN1octet_t* pbBuf, ASN1uint32_t cbBufSize, ASN1decoding_t pParent)
+{
+        return ASN1_ERR_BADARGS;
+}
+
 #endif