fix python build

This commit is contained in:
Hubert Chathi 2021-11-19 15:49:12 -05:00
parent 98b8e35a7c
commit 5039c0cc3a

View file

@ -15,6 +15,8 @@
#ifndef OLM_ERROR_H_ #ifndef OLM_ERROR_H_
#define OLM_ERROR_H_ #define OLM_ERROR_H_
#include "olm/olm_export.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
@ -69,7 +71,7 @@ enum OlmErrorCode {
}; };
/** get a string representation of the given error code. */ /** get a string representation of the given error code. */
const char * _olm_error_to_string(enum OlmErrorCode error); OLM_EXPORT const char * _olm_error_to_string(enum OlmErrorCode error);
#ifdef __cplusplus #ifdef __cplusplus
} // extern "C" } // extern "C"