diff options
author | iovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2007-07-17 23:31:07 +0000 |
---|---|---|
committer | iovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2007-07-17 23:31:07 +0000 |
commit | fbf943215a37482aa237b58a6e01c2bb795bc4c6 (patch) | |
tree | 9322416f365bb90d31df8e73408ba31af423b816 /recordmydesktop/include | |
parent | 427b2689f88f6b07b6f74fc24b9073bc7de1bc4b (diff) |
rmdfunc.h: added x_offset and Y_offset arguments in BlocksFromList
git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@392 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/include')
-rw-r--r-- | recordmydesktop/include/rmdfunc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/recordmydesktop/include/rmdfunc.h b/recordmydesktop/include/rmdfunc.h index 7734640..9751ba2 100644 --- a/recordmydesktop/include/rmdfunc.h +++ b/recordmydesktop/include/rmdfunc.h @@ -662,11 +662,17 @@ int StopJackClient(JackData *jdata); * * \param root Root entry of the list with damaged areas * +* \param x_offset left x of the recording area +* +* \param x_offset upper y of the recording area +* * \param blocknum_x Width of image in blocks * * \param blocknum_y Height of image in blocks */ void BlocksFromList(RectArea **root, + unsigned int x_offset, + unsigned int y_offset, unsigned int blocknum_x, unsigned int blocknum_y); |