Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Kirk <peter.kirk@gmx.de>2008-06-06 16:38:38 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-06-07 07:13:59 +0400
commit19f9dc98ee0db66f87ab1043b739a6f0e0dc818f (patch)
treebe336444e829f58e3a642f8270a6f45d345f6dc1 /libcelt/celt_header.h
parent96748cf309af5539eab85080408c9865746d720b (diff)
Use EXPORT macro in a way compatible with win32
Diffstat (limited to 'libcelt/celt_header.h')
-rw-r--r--libcelt/celt_header.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcelt/celt_header.h b/libcelt/celt_header.h
index e267e22..e088bb2 100644
--- a/libcelt/celt_header.h
+++ b/libcelt/celt_header.h
@@ -56,11 +56,11 @@ typedef struct {
} CELTHeader;
/** Creates a basic header struct */
-void celt_header_init(CELTHeader *header, const CELTMode *m);
+EXPORT void celt_header_init(CELTHeader *header, const CELTMode *m);
-int celt_header_to_packet(const CELTHeader *header, unsigned char *packet, celt_uint32_t size);
+EXPORT int celt_header_to_packet(const CELTHeader *header, unsigned char *packet, celt_uint32_t size);
-int celt_header_from_packet(const unsigned char *packet, celt_uint32_t size, CELTHeader *header);
+EXPORT int celt_header_from_packet(const unsigned char *packet, celt_uint32_t size, CELTHeader *header);
#ifdef __cplusplus
}