Guest User

Untitled

a guest
Oct 2nd, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. Waf: Entering directory `/root/programming/myLv2/plugins/eg-sinsynth.lv2/build'
  2. [6/7] cxx: sinsynth_gui.cpp -> build/sinsynth_gui.cpp.4.o
  3. ../sinsynth_gui.cpp: In function 'const void* extension_data(const char*)':
  4. ../sinsynth_gui.cpp:169:16: error: 'LV2UI_Show_Interface' does not name a type
  5. static const LV2UI_Show_Interface show_iface = { ui_show, ui_hide };
  6. ^
  7. ../sinsynth_gui.cpp:170:16: error: 'LV2UI_Idle_Interface' does not name a type
  8. static const LV2UI_Idle_Interface idle_iface = { idle };
  9. ^
  10. ../sinsynth_gui.cpp:172:20: error: 'LV2_UI__showInterface' was not declared in this scope
  11. if (!strcmp(uri, LV2_UI__showInterface))
  12. ^
  13. ../sinsynth_gui.cpp:174:20: error: 'show_iface' was not declared in this scope
  14. return (void*)&show_iface;
  15. ^
  16. ../sinsynth_gui.cpp:176:25: error: 'LV2_UI__idleInterface' was not declared in this scope
  17. else if (!strcmp(uri, LV2_UI__idleInterface))
  18. ^
  19. ../sinsynth_gui.cpp:178:13: error: 'idle_iface' was not declared in this scope
  20. return &idle_iface;
Advertisement
Add Comment
Please, Sign In to add comment