diff options
author | enselic <enselic@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2008-09-13 15:22:48 +0000 |
---|---|---|
committer | enselic <enselic@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2008-09-13 15:22:48 +0000 |
commit | d0ed3d9ba8bdcea23bbcd14fbaa2198d4f8a01c5 (patch) | |
tree | 9acb456537df6c9ff4e819587fcead7d710f328a /recordmydesktop/src/cleanup.c | |
parent | 0ae6b7238cca4af9782e9231ed316837e1f5d191 (diff) |
include/rmdfunc.h: Removed CleanUp() declaration from here.
src/initialize_data.[ch]: Host CleanUp() here instead. Long-term there
should be much more code shared between rmd_rescue.c and
initialize_data.c.
src/cleanup.c: Removed.
src/Makefile.am: Removed cleanup.c.
git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@536 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/src/cleanup.c')
-rw-r--r-- | recordmydesktop/src/cleanup.c | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/recordmydesktop/src/cleanup.c b/recordmydesktop/src/cleanup.c deleted file mode 100644 index 26b6e1f..0000000 --- a/recordmydesktop/src/cleanup.c +++ /dev/null @@ -1,41 +0,0 @@ -/****************************************************************************** -* recordMyDesktop * -******************************************************************************* -* * -* Copyright (C) 2006,2007,2008 John Varouhakis * -* * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the Free Software * -* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * -* * -* * -* * -* For further information contact me at johnvarouhakis@gmail.com * -******************************************************************************/ - -#include "recordmydesktop.h" - -void CleanUp(void){ - - free(yblocks); - free(ublocks); - free(vblocks); - -} - - - - - - |