Commit b28b2767956aede7eef956d16a03e33b5c818837

Authored by Perry Werneck
1 parent 7a1870d5

Updating doxygen comments.

Showing 1 changed file with 9 additions and 11 deletions   Show diff stats
src/lib3270/kybd.c
@@ -412,8 +412,8 @@ void kybd_connect(H3270 *session, int connected, void *dunno unused) @@ -412,8 +412,8 @@ void kybd_connect(H3270 *session, int connected, void *dunno unused)
412 } 412 }
413 } 413 }
414 414
415 -/*  
416 - * Called when we switch between 3270 and ANSI modes. 415 +/**
  416 + * @brief Called when we switch between 3270 and ANSI modes.
417 */ 417 */
418 void kybd_in3270(H3270 *hSession, int in3270 unused, void *dunno unused) 418 void kybd_in3270(H3270 *hSession, int in3270 unused, void *dunno unused)
419 { 419 {
@@ -427,8 +427,8 @@ void kybd_in3270(H3270 *hSession, int in3270 unused, void *dunno unused) @@ -427,8 +427,8 @@ void kybd_in3270(H3270 *hSession, int in3270 unused, void *dunno unused)
427 ps_process(hSession); 427 ps_process(hSession);
428 } 428 }
429 429
430 -/*  
431 - * Lock the keyboard because of an operator error. 430 +/**
  431 + * @brief Lock the keyboard because of an operator error.
432 */ 432 */
433 static void operator_error(H3270 *hSession, int error_type) 433 static void operator_error(H3270 *hSession, int error_type)
434 { 434 {
@@ -448,7 +448,7 @@ static void operator_error(H3270 *hSession, int error_type) @@ -448,7 +448,7 @@ static void operator_error(H3270 *hSession, int error_type)
448 /** 448 /**
449 * @brief Handle an AID (Attention IDentifier) key. 449 * @brief Handle an AID (Attention IDentifier) key.
450 * 450 *
451 - * This is the common stuff that gets executed for all AID keys (PFs, PAs, Clear and etc). 451 + * This is the common stuff that gets executed for all AID keys (PFs, PAs, Clear and etc).
452 * 452 *
453 */ 453 */
454 static void key_AID(H3270 *hSession, unsigned char aid_code) 454 static void key_AID(H3270 *hSession, unsigned char aid_code)
@@ -585,8 +585,7 @@ LIB3270_EXPORT int lib3270_attn(H3270 *hSession) @@ -585,8 +585,7 @@ LIB3270_EXPORT int lib3270_attn(H3270 *hSession)
585 } 585 }
586 586
587 /** 587 /**
588 - * Prepare for an insert of 'count' bytes.  
589 - * 588 + * @brief Prepare for an insert of 'count' bytes.
590 * 589 *
591 * @return True if the insert is legal, False otherwise. 590 * @return True if the insert is legal, False otherwise.
592 */ 591 */
@@ -1097,10 +1096,9 @@ LIB3270_EXPORT int lib3270_previousfield(H3270 *hSession) @@ -1097,10 +1096,9 @@ LIB3270_EXPORT int lib3270_previousfield(H3270 *hSession)
1097 return 0; 1096 return 0;
1098 } 1097 }
1099 1098
1100 -/*  
1101 - * Deferred keyboard unlock. 1099 +/**
  1100 + * @brief Deferred keyboard unlock.
1102 */ 1101 */
1103 -  
1104 static int defer_unlock(H3270 *hSession) 1102 static int defer_unlock(H3270 *hSession)
1105 { 1103 {
1106 lib3270_kybdlock_clear(hSession,KL_DEFERRED_UNLOCK); 1104 lib3270_kybdlock_clear(hSession,KL_DEFERRED_UNLOCK);
@@ -1111,7 +1109,7 @@ static int defer_unlock(H3270 *hSession) @@ -1111,7 +1109,7 @@ static int defer_unlock(H3270 *hSession)
1111 } 1109 }
1112 1110
1113 /** 1111 /**
1114 - * Reset keyboard lock. 1112 + * @brief Reset keyboard lock.
1115 * 1113 *
1116 * @param hSession Session handle. 1114 * @param hSession Session handle.
1117 * @param explicit Explicit request from the keyboard. 1115 * @param explicit Explicit request from the keyboard.