diff --git a/src/include/lib3270.h b/src/include/lib3270.h index 67babdd..d97329f 100644 --- a/src/include/lib3270.h +++ b/src/include/lib3270.h @@ -162,7 +162,7 @@ LIB3270_TOGGLE_ALTSCREEN, /**< @brief auto resize on altscreen */ LIB3270_TOGGLE_KEEP_ALIVE, /**< @brief Enable network keep-alive with SO_KEEPALIVE */ LIB3270_TOGGLE_NETWORK_TRACE, /**< @brief Enable network in/out trace */ - LIB3270_TOGGLE_SSL_TRACE, /**< @brief Enable security traces */ + LIB3270_TOGGLE_SSL_TRACE, /**< @brief Enable security traces */ LIB3270_TOGGLE_COUNT diff --git a/src/lib3270/kybd.c b/src/lib3270/kybd.c index e97e72b..3bb5ea0 100644 --- a/src/lib3270/kybd.c +++ b/src/lib3270/kybd.c @@ -321,7 +321,9 @@ static int flush_ta(H3270 *hSession) return any; } -/* Set bits in the keyboard lock. */ +/** + * @brief Set bits in the keyboard lock. + */ static void kybdlock_set(H3270 *hSession, unsigned int bits) { unsigned int n; @@ -343,7 +345,7 @@ static void kybdlock_set(H3270 *hSession, unsigned int bits) } /** - * Clear bits in the keyboard lock. + * @brief Clear bits in the keyboard lock. * */ void lib3270_kybdlock_clear(H3270 *hSession, LIB3270_KL_STATE bits) @@ -368,7 +370,7 @@ void lib3270_kybdlock_clear(H3270 *hSession, LIB3270_KL_STATE bits) } /** - * Set or clear enter-inhibit mode. + * @brief Set or clear enter-inhibit mode. * * @param session Session handle * @param inhibit New state @@ -390,8 +392,8 @@ void kybd_inhibit(H3270 *session, Boolean inhibit) } } -/* - * Called when a host connects or disconnects. +/** + * @brief Called when a host connects or disconnects. */ void kybd_connect(H3270 *session, int connected, void *dunno unused) { diff --git a/src/lib3270/rpq.c b/src/lib3270/rpq.c index 9fc3da2..9a0318a 100644 --- a/src/lib3270/rpq.c +++ b/src/lib3270/rpq.c @@ -124,7 +124,7 @@ static struct rpq_keyword static char *x3270rpq; /** - * RPQNAMES query reply. + * @brief RPQNAMES query reply. */ void do_qr_rpqnames(H3270 *hSession) { @@ -271,7 +271,9 @@ void do_qr_rpqnames(H3270 *hSession) rpq_dump_warnings(hSession); } -/* Utility function used by the RPQNAMES query reply. */ +/** + * @brief Utility function used by the RPQNAMES query reply. + */ static Boolean select_rpq_terms(H3270 *hSession) { int i,j,k,len; @@ -373,7 +375,7 @@ static Boolean select_rpq_terms(H3270 *hSession) } /** - * Utility function used by the RPQNAMES query reply. + * @brief Utility function used by the RPQNAMES query reply. */ static int get_rpq_timezone(H3270 *hSession) { @@ -458,7 +460,9 @@ static int get_rpq_timezone(H3270 *hSession) } -/* Utility function used by the RPQNAMES query reply. */ +/** + * @brief Utility function used by the RPQNAMES query reply. + */ static int get_rpq_user(H3270 *hSession, unsigned char buf[], const int buflen) { /* -- libgit2 0.21.2