Use EXPORT macro in a way compatible with win32

This commit is contained in:
Peter Kirk 2008-06-06 14:38:38 +02:00 committed by Jean-Marc Valin
parent 96748cf309
commit 19f9dc98ee
7 changed files with 33 additions and 33 deletions

View file

@ -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
}