如何从erlang shell中找到“wx”模块版本?

svmlkihl  于 2022-12-08  发布在  Erlang
关注(0)|答案(1)|浏览(228)

我使用module_info()如下,vsn字段不包含版本信息。如何将190640877967407394157636569138961474448转换为wx版本?
从Erlang 24.3.3开始,wxErlang参考手册wx版本应为2.1.3。

  1. (chair@macbook.local)1> wx:module_info().
  2. [{module,wx},
  3. {exports,[{parent_class,1},
  4. {new,0},
  5. {new,1},
  6. {destroy,0},
  7. {get_env,0},
  8. {set_env,1},
  9. {subscribe_events,0},
  10. {null,0},
  11. {is_null,1},
  12. {equal,2},
  13. {getObjectType,1},
  14. {typeCast,2},
  15. {batch,1},
  16. {foreach,2},
  17. {map,2},
  18. {foldl,3},
  19. {foldr,3},
  20. {create_memory,1},
  21. {get_memory_bin,1},
  22. {retain_memory,1},
  23. {release_memory,1},
  24. {debug,1},
  25. {demo,0},
  26. {module_info,...},
  27. {...}]},
  28. {attributes,[{vsn,[190640877967407394157636569138961474448]}]},
  29. {compile,[{version,"8.0.3"},
  30. {options,[debug_info,
  31. {d,'USE_ESOCK',true},
  32. {i,"/buildroot/otp/lib/wx/src/../include"},
  33. warn_unused_vars]},
  34. {source,"/buildroot/otp/lib/wx/src/wx.erl"}]},
  35. {md5,<<143,108,24,249,12,71,11,187,138,125,241,49,52,90,
  36. 99,144>>}]
i2byvkas

i2byvkas1#

  1. 1> application:load(wx).
  2. ok
  3. 2> application:loaded_applications().
  4. [{kernel,"ERTS CXC 138 10","8.3.1"},
  5. {wx,"Yet another graphics system","2.1.2"},
  6. {stdlib,"ERTS CXC 138 10","3.17.1"}]

相关问题