The unified diff between revisions [92f17752..] and [48b49b84..] 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 [14987092b2a66376f2c8ed76948bf026b8379eaf]
# to [754b0c94f34f9805ed0c722aed0ad78e50ae4106]
#
============================================================
--- include/ber_dec.h 14987092b2a66376f2c8ed76948bf026b8379eaf
+++ include/ber_dec.h 754b0c94f34f9805ed0c722aed0ad78e50ae4106
@@ -1,6 +1,6 @@
/*************************************************
* BER Decoder Header File *
-* (C) 1999-2006 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&);
}