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 152 #else
153 153 .default_value = 350,
154 154 #endif // UNLOCK_MS
  155 + .label = N_("Unlock delay"),
155 156 .description = N_( "The delay between the host unlocking the keyboard and the actual unlock" ), // Property description.
156 157 .get = lib3270_get_unlock_delay, // Get value.
157 158 .set = lib3270_set_unlock_delay // Set value.
... ...
src/include/lib3270/properties.h
... ... @@ -210,7 +210,7 @@
210 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 215 #ifdef __cplusplus
216 216 }
... ...