From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 334461381F3 for ; Wed, 11 Sep 2013 06:04:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C324BE0C4D; Wed, 11 Sep 2013 06:04:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2C867E0C4D for ; Wed, 11 Sep 2013 06:04:11 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3B43D33EAA5 for ; Wed, 11 Sep 2013 06:04:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 53731E5465 for ; Wed, 11 Sep 2013 06:04:07 +0000 (UTC) From: "Sven Eden" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Eden" Message-ID: <1378818999.768337176fe08810ca18aa643c4097486c41393b.yamakuzure@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: ufed-curses-types.h X-VCS-Directories: / X-VCS-Committer: yamakuzure X-VCS-Committer-Name: Sven Eden X-VCS-Revision: 768337176fe08810ca18aa643c4097486c41393b X-VCS-Branch: master Date: Wed, 11 Sep 2013 06:04:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ee2275d4-ce22-4395-a3d8-05c9b2e67757 X-Archives-Hash: 59933329d5b91e217cb49d436b209a3a commit: 768337176fe08810ca18aa643c4097486c41393b Author: Sven Eden gmx net> AuthorDate: Tue Sep 10 13:16:39 2013 +0000 Commit: Sven Eden gmx de> CommitDate: Tue Sep 10 13:16:39 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=76833717 eDesc: Added enum to determine whether the original or the alternative description is displayed --- ufed-curses-types.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ufed-curses-types.h b/ufed-curses-types.h index 1fe52d6..3f04650 100644 --- a/ufed-curses-types.h +++ b/ufed-curses-types.h @@ -38,6 +38,14 @@ * ============= */ +/** @enum eDesc_ + * @brief determine whether to display the original/alternative description +**/ +typedef enum eDesc_ { + eDesc_ori, + eDesc_alt +} eDesc; + /** @enum eMask_ * @brief determine which flags are shown concerning masked status **/