I'm not sure why I'm spending my time on this, but I've cleaned

this header file up. Macros first, enums, typedefs, then functions.

I've moved the typedefs to the struct definitions as this makes
the file a good deal shorter.

I've also tried to group the calls by topic, but the lack of a
consistent naming scheme makes this difficult.


SVN revision: 5601
This commit is contained in:
cpk 2001-11-01 22:43:47 +00:00 committed by cpk
parent dc64dc044e
commit cccefaa1bb
2 changed files with 774 additions and 766 deletions

File diff suppressed because it is too large Load Diff

View File

@ -316,6 +316,7 @@ ecore_sync(void)
{
if (!disp)
return;
XSync(disp, False);
}
@ -1796,8 +1797,11 @@ ecore_window_dnd_advertise(Window win)
void
ecore_grab(void)
{
if (!disp) return;
if (!disp)
return;
x_grabs++;
if (x_grabs == 1)
XGrabServer(disp);
}
@ -1805,8 +1809,11 @@ ecore_grab(void)
void
ecore_ungrab(void)
{
if (!disp) return;
if (!disp)
return;
x_grabs--;
if (x_grabs == 0)
{
XUngrabServer(disp);