Commit 954cd60badc2b1c5b06f79be433a8a4ae056e062
1 parent
2f9a7fe4
Exists in
master
and in
3 other branches
Atualizando documentação.
Showing
3 changed files
with
16 additions
and
10 deletions
Show diff stats
src/include/lib3270.h
@@ -162,7 +162,7 @@ | @@ -162,7 +162,7 @@ | ||
162 | LIB3270_TOGGLE_ALTSCREEN, /**< @brief auto resize on altscreen */ | 162 | LIB3270_TOGGLE_ALTSCREEN, /**< @brief auto resize on altscreen */ |
163 | LIB3270_TOGGLE_KEEP_ALIVE, /**< @brief Enable network keep-alive with SO_KEEPALIVE */ | 163 | LIB3270_TOGGLE_KEEP_ALIVE, /**< @brief Enable network keep-alive with SO_KEEPALIVE */ |
164 | LIB3270_TOGGLE_NETWORK_TRACE, /**< @brief Enable network in/out trace */ | 164 | LIB3270_TOGGLE_NETWORK_TRACE, /**< @brief Enable network in/out trace */ |
165 | - LIB3270_TOGGLE_SSL_TRACE, /**< @brief Enable security traces */ | 165 | + LIB3270_TOGGLE_SSL_TRACE, /**< @brief Enable security traces */ |
166 | 166 | ||
167 | LIB3270_TOGGLE_COUNT | 167 | LIB3270_TOGGLE_COUNT |
168 | 168 |
src/lib3270/kybd.c
@@ -321,7 +321,9 @@ static int flush_ta(H3270 *hSession) | @@ -321,7 +321,9 @@ static int flush_ta(H3270 *hSession) | ||
321 | return any; | 321 | return any; |
322 | } | 322 | } |
323 | 323 | ||
324 | -/* Set bits in the keyboard lock. */ | 324 | +/** |
325 | + * @brief Set bits in the keyboard lock. | ||
326 | + */ | ||
325 | static void kybdlock_set(H3270 *hSession, unsigned int bits) | 327 | static void kybdlock_set(H3270 *hSession, unsigned int bits) |
326 | { | 328 | { |
327 | unsigned int n; | 329 | unsigned int n; |
@@ -343,7 +345,7 @@ static void kybdlock_set(H3270 *hSession, unsigned int bits) | @@ -343,7 +345,7 @@ static void kybdlock_set(H3270 *hSession, unsigned int bits) | ||
343 | } | 345 | } |
344 | 346 | ||
345 | /** | 347 | /** |
346 | - * Clear bits in the keyboard lock. | 348 | + * @brief Clear bits in the keyboard lock. |
347 | * | 349 | * |
348 | */ | 350 | */ |
349 | void lib3270_kybdlock_clear(H3270 *hSession, LIB3270_KL_STATE bits) | 351 | void lib3270_kybdlock_clear(H3270 *hSession, LIB3270_KL_STATE bits) |
@@ -368,7 +370,7 @@ void lib3270_kybdlock_clear(H3270 *hSession, LIB3270_KL_STATE bits) | @@ -368,7 +370,7 @@ void lib3270_kybdlock_clear(H3270 *hSession, LIB3270_KL_STATE bits) | ||
368 | } | 370 | } |
369 | 371 | ||
370 | /** | 372 | /** |
371 | - * Set or clear enter-inhibit mode. | 373 | + * @brief Set or clear enter-inhibit mode. |
372 | * | 374 | * |
373 | * @param session Session handle | 375 | * @param session Session handle |
374 | * @param inhibit New state | 376 | * @param inhibit New state |
@@ -390,8 +392,8 @@ void kybd_inhibit(H3270 *session, Boolean inhibit) | @@ -390,8 +392,8 @@ void kybd_inhibit(H3270 *session, Boolean inhibit) | ||
390 | } | 392 | } |
391 | } | 393 | } |
392 | 394 | ||
393 | -/* | ||
394 | - * Called when a host connects or disconnects. | 395 | +/** |
396 | + * @brief Called when a host connects or disconnects. | ||
395 | */ | 397 | */ |
396 | void kybd_connect(H3270 *session, int connected, void *dunno unused) | 398 | void kybd_connect(H3270 *session, int connected, void *dunno unused) |
397 | { | 399 | { |
src/lib3270/rpq.c
@@ -124,7 +124,7 @@ static struct rpq_keyword | @@ -124,7 +124,7 @@ static struct rpq_keyword | ||
124 | static char *x3270rpq; | 124 | static char *x3270rpq; |
125 | 125 | ||
126 | /** | 126 | /** |
127 | - * RPQNAMES query reply. | 127 | + * @brief RPQNAMES query reply. |
128 | */ | 128 | */ |
129 | void do_qr_rpqnames(H3270 *hSession) | 129 | void do_qr_rpqnames(H3270 *hSession) |
130 | { | 130 | { |
@@ -271,7 +271,9 @@ void do_qr_rpqnames(H3270 *hSession) | @@ -271,7 +271,9 @@ void do_qr_rpqnames(H3270 *hSession) | ||
271 | rpq_dump_warnings(hSession); | 271 | rpq_dump_warnings(hSession); |
272 | } | 272 | } |
273 | 273 | ||
274 | -/* Utility function used by the RPQNAMES query reply. */ | 274 | +/** |
275 | + * @brief Utility function used by the RPQNAMES query reply. | ||
276 | + */ | ||
275 | static Boolean select_rpq_terms(H3270 *hSession) | 277 | static Boolean select_rpq_terms(H3270 *hSession) |
276 | { | 278 | { |
277 | int i,j,k,len; | 279 | int i,j,k,len; |
@@ -373,7 +375,7 @@ static Boolean select_rpq_terms(H3270 *hSession) | @@ -373,7 +375,7 @@ static Boolean select_rpq_terms(H3270 *hSession) | ||
373 | } | 375 | } |
374 | 376 | ||
375 | /** | 377 | /** |
376 | - * Utility function used by the RPQNAMES query reply. | 378 | + * @brief Utility function used by the RPQNAMES query reply. |
377 | */ | 379 | */ |
378 | static int get_rpq_timezone(H3270 *hSession) | 380 | static int get_rpq_timezone(H3270 *hSession) |
379 | { | 381 | { |
@@ -458,7 +460,9 @@ static int get_rpq_timezone(H3270 *hSession) | @@ -458,7 +460,9 @@ static int get_rpq_timezone(H3270 *hSession) | ||
458 | } | 460 | } |
459 | 461 | ||
460 | 462 | ||
461 | -/* Utility function used by the RPQNAMES query reply. */ | 463 | +/** |
464 | + * @brief Utility function used by the RPQNAMES query reply. | ||
465 | + */ | ||
462 | static int get_rpq_user(H3270 *hSession, unsigned char buf[], const int buflen) | 466 | static int get_rpq_user(H3270 *hSession, unsigned char buf[], const int buflen) |
463 | { | 467 | { |
464 | /* | 468 | /* |