diff options
author | iovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2007-11-15 11:20:50 +0000 |
---|---|---|
committer | iovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2007-11-15 11:20:50 +0000 |
commit | 73b30883a6046a316969c13751238180933876e9 (patch) | |
tree | afef659fef63a69dad57aef6a74043afbda609d1 /recordmydesktop/include/rmdmacro.h | |
parent | 4a2c3294e994d81cc63e2feb5a75bc2ba7e65ff9 (diff) |
rmdfunc.h: added RegisterShortcuts declaration,
changed PollDamage to PollEvents.
rmdmacro.h: Added default values for shortcuts.
rmdtypes.h: added HotKey struct type and all members related
to shortcuts, on the pdata and args structs.
git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@434 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/include/rmdmacro.h')
-rw-r--r-- | recordmydesktop/include/rmdmacro.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recordmydesktop/include/rmdmacro.h b/recordmydesktop/include/rmdmacro.h index 0d2ecfc..d167675 100644 --- a/recordmydesktop/include/rmdmacro.h +++ b/recordmydesktop/include/rmdmacro.h @@ -228,6 +228,10 @@ (args)->s_quality=10;\ (args)->workdir=(char *)malloc(5);\ strcpy((args)->workdir,"/tmp");\ + (args)->pause_shortcut=(char *)malloc(15);\ + strcpy((args)->pause_shortcut,"Control+Mod1+p");\ + (args)->stop_shortcut=(char *)malloc(15);\ + strcpy((args)->stop_shortcut,"Control+Mod1+s");\ } #define QUERY_DISPLAY_SPECS(display,specstruct){\ |