Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. #define EFL_BETA_API_SUPPORT
  2. #define EFL_EO_API_SUPPORT
  3. extern "C"
  4. {
  5. #include <Elementary.h>
  6. #include <elm_popup_item.eo.h>
  7. #include <elm_genlist_item.eo.h>
  8. }
  9.  
  10. EAPI_MAIN int elm_main (int argc, char *argv[])
  11. {
  12.    elm_genlist_item_class_get();
  13.    ELM_GENLIST_ITEM_CLASS;
  14.    elm_popup_item_class_get();
  15.    ELM_POPUP_ITEM_CLASS;
  16.    return 0;
  17. }
  18. ELM_MAIN()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement