반응형
#include <stdio.h> #include <ecore_x.h> int main() { ecore_x_init(0); Ecore_X_Screen* screen = ecore_x_default_screen_get(); if (!screen) { printf("Error\n"); } int w, h; ecore_x_screen_size_get(screen, &w, &h); printf("%d, %d\n", w, h); return 0; }
ecore_x_init이 되어있지 않으면
ecore_x_default_screen은 crash가 난다.
반응형
'Open Source > EFL' 카테고리의 다른 글
[EFL] EFL build on ubuntu (13.04) (1) | 2013.07.24 |
---|---|
Simple event test(mouse down/focus) using Evas (0) | 2012.09.03 |
[Elementary] 기본 코드 (0) | 2012.08.04 |
[EFL] How to build EFL on Ubuntu. (0) | 2012.02.21 |
SNAPSHOT of 2011/07/05 (0) | 2011.07.06 |