From bf82dd9c6047d0b3d48d9f9d7e2833fce8dfbf60 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sun, 8 Nov 2020 01:12:57 +0300 Subject: [PATCH] Document account_id parameter for dc_accounts_remove_account --- deltachat-ffi/deltachat.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deltachat-ffi/deltachat.h b/deltachat-ffi/deltachat.h index e15477cdb..7655760c5 100644 --- a/deltachat-ffi/deltachat.h +++ b/deltachat-ffi/deltachat.h @@ -2295,9 +2295,10 @@ uint32_t dc_accounts_migrate_account (dc_accounts_t* accounts, const * * @memberof dc_accounts_t * @param accounts Account manager as created by dc_accounts_new(). + * @param account_id The account-id as returned e.g. by dc_accounts_add_account(). * @return 1=success, 0=error */ -int dc_accounts_remove_account (dc_accounts_t* accounts, uint32_t); +int dc_accounts_remove_account (dc_accounts_t* accounts, uint32_t account_id); /**