Moved donotwrap to correct place for CoreVTable

This commit is contained in:
Sylvain Berfini 2017-05-09 12:29:50 +02:00
parent 8f523677ea
commit 1f94814f54

View file

@ -167,6 +167,7 @@ typedef void (*LinphoneCoreCbFunc)(LinphoneCore *lc,void * user_data);
/**
* This structure holds all callbacks that the application should implement.
* None is mandatory.
* @donotwrap
**/
typedef struct _LinphoneCoreVTable{
LinphoneCoreGlobalStateChangedCb global_state_changed; /**<Notifies global state changes*/
@ -213,7 +214,6 @@ typedef struct _LinphoneCoreVTable{
/**
* Instantiate a vtable with all arguments set to NULL
* @return newly allocated vtable
* @donotwrap
*/
LINPHONE_PUBLIC LinphoneCoreVTable *linphone_core_v_table_new(void);
@ -236,6 +236,7 @@ LINPHONE_PUBLIC void* linphone_core_v_table_get_user_data(const LinphoneCoreVTab
* This is meant only to be called from a callback to be able to get the user_data associated with the vtable that called the callback.
* @param lc the linphonecore
* @return the vtable that called the last callback
* @donotwrap
*/
LINPHONE_PUBLIC LinphoneCoreVTable *linphone_core_get_current_vtable(LinphoneCore *lc);