Commit 2760e10b28427ac22526631c367a65b54acc0e70

Authored by perry.werneck@gmail.com
1 parent a9a627aa

Aparentemente todos os módulos "encaixaram"

Showing 3 changed files with 6 additions and 8 deletions   Show diff stats
XtGlue.c
... ... @@ -581,8 +581,7 @@ Realloc(void *p, size_t len)
581 581 return p;
582 582 }
583 583  
584   -void
585   -Free(void *p)
  584 +void Free(void *p)
586 585 {
587 586 if (p != NULL)
588 587 free(p);
... ...
api.h
... ... @@ -429,9 +429,6 @@
429 429 #define set_3270_model(h,m) lib3270_set_model(h,m)
430 430 #define get_3270_model(h) lib3270_get_model(h)
431 431  
432   - LOCAL_EXTERN int lib3270_set_model(H3270 *session, int model);
433   - LOCAL_EXTERN int lib3270_get_model(H3270 *session);
434   -
435 432 /* Get connection info */
436 433 #define get_connected_lu(h) lib3270_get_luname(h)
437 434 #define get_current_host(h) lib3270_get_host(h)
... ...
glue.c
... ... @@ -419,10 +419,12 @@ static void initialize(void)
419 419 appres.highlight_underline = True;
420 420 #endif /*]*/
421 421  
422   -#if defined(C3270) && !defined(_WIN32) && !defined(LIB3270) /*[*/
423   - /* Merge in the profile. */
  422 +/*
  423 +#if defined(C3270) && !defined(_WIN32) && !defined(LIB3270)
  424 + // Merge in the profile.
424 425 merge_profile();
425   -#endif /*]*/
  426 +#endif
  427 +*/
426 428  
427 429 }
428 430  
... ...