The unified diff between revisions [5ac60dc5..] and [b3f30c54..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'include/ber_dec.h'
#
#
# patch "include/ber_dec.h"
# from [9a3931c832c8e5bb00fa2a493532759637bc0201]
# to [754b0c94f34f9805ed0c722aed0ad78e50ae4106]
#
============================================================
--- include/ber_dec.h 9a3931c832c8e5bb00fa2a493532759637bc0201
+++ include/ber_dec.h 754b0c94f34f9805ed0c722aed0ad78e50ae4106
@@ -1,6 +1,6 @@
/*************************************************
* BER Decoder Header File *
-* (C) 1999-2007 The Botan Project *
+* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_BER_DECODER_H__
@@ -8,13 +8,14 @@
#include <botan/asn1_oid.h>
#include <botan/data_src.h>
+#include <botan/enums.h>
namespace Botan {
/*************************************************
* BER Decoding Object *
*************************************************/
-class BER_Decoder
+class BOTAN_DLL BER_Decoder
{
public:
BER_Object get_next_object();
@@ -120,7 +121,7 @@ namespace BER {
*************************************************/
namespace BER {
-void decode(BER_Decoder&, Key_Constraints&);
+void BOTAN_DLL decode(BER_Decoder&, Key_Constraints&);
}