Commit b2fa74acc621638894bc0f021907cb0377b85862

Authored by Perry Werneck
1 parent 73fc7959

Fixing exports.

src/core/properties/unsigned.c
@@ -152,6 +152,7 @@ static unsigned int lib3270_get_host_type_number(const H3270 *hSession) @@ -152,6 +152,7 @@ static unsigned int lib3270_get_host_type_number(const H3270 *hSession)
152 #else 152 #else
153 .default_value = 350, 153 .default_value = 350,
154 #endif // UNLOCK_MS 154 #endif // UNLOCK_MS
  155 + .label = N_("Unlock delay"),
155 .description = N_( "The delay between the host unlocking the keyboard and the actual unlock" ), // Property description. 156 .description = N_( "The delay between the host unlocking the keyboard and the actual unlock" ), // Property description.
156 .get = lib3270_get_unlock_delay, // Get value. 157 .get = lib3270_get_unlock_delay, // Get value.
157 .set = lib3270_set_unlock_delay // Set value. 158 .set = lib3270_set_unlock_delay // Set value.
src/include/lib3270/properties.h
@@ -210,7 +210,7 @@ @@ -210,7 +210,7 @@
210 * @return Property descriptor, or NULL if failed. 210 * @return Property descriptor, or NULL if failed.
211 * 211 *
212 */ 212 */
213 - const LIB3270_UINT_PROPERTY * lib3270_unsigned_property_get_by_name(const char *name); 213 + LIB3270_EXPORT const LIB3270_UINT_PROPERTY * lib3270_unsigned_property_get_by_name(const char *name);
214 214
215 #ifdef __cplusplus 215 #ifdef __cplusplus
216 } 216 }