diff options
author | enselic <enselic@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2008-09-12 21:16:52 +0000 |
---|---|---|
committer | enselic <enselic@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2008-09-12 21:16:52 +0000 |
commit | ae8580b5f27c3dcca104bbe42023361b3ab8f205 (patch) | |
tree | 698ea0d25e6e9629350848aac4800b9e621f33a9 /recordmydesktop/include | |
parent | 77ee36547a3ed0e7fad1e176f4a6a9c6fe227861 (diff) |
Give rectinsert.c a header file and include this header file in
RectInsert() clients.
src/Makefile.am
src/rectinsert.h: Added rectinsert.h.
src/get_frame.c
src/rectinsert.c
src/poll_events.c: Include rectinsert.h
include/rmdfunc.h: Removed RectInsert() declaration, it's in
rectinsert.h now.
git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@512 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/include')
-rw-r--r-- | recordmydesktop/include/rmdfunc.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/recordmydesktop/include/rmdfunc.h b/recordmydesktop/include/rmdfunc.h index 3b979c7..01a1c92 100644 --- a/recordmydesktop/include/rmdfunc.h +++ b/recordmydesktop/include/rmdfunc.h @@ -89,20 +89,6 @@ void *FlushToOgg(ProgData *pdata); void ClearList(RectArea **root); /** -* Insert a new rectangle on the list, making sure it doesn't overlap -* with the existing ones -* \param root Root entry of the list -* -* \param wgeom New area to be inserted -* -* \returns Number of insertions during operation -* -* \note This function is reentrant and recursive. The number -* of insertions takes this into account. -*/ -int RectInsert(RectArea **root,WGeometry *wgeom); - -/** * Set up all callbacks and signal handlers * \param pdata ProgData struct containing all program data */ |