mirror of
https://github.com/greenshot/greenshot
synced 2025-08-19 21:13:23 -07:00
Changed interfaces for the changes made for Bug # 3048290
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@824 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
bd60a8c339
commit
6426add749
2 changed files with 3 additions and 3 deletions
|
@ -164,8 +164,8 @@ namespace Greenshot.Helpers {
|
||||||
get {return plugins;}
|
get {return plugins;}
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool RegisterHotKey(int modifierKeyCode, int virtualKeyCode, HotKeyHandler handler) {
|
public bool RegisterHotKey(uint modifierKeyCode, uint virtualKeyCode, HotKeyHandler handler) {
|
||||||
//return HotkeyHelper.RegisterHotKey((int)MainForm.instance.Handle, modifierKeyCode, virtualKeyCode, handler);
|
//return HotkeyHelper.RegisterHotKey(MainForm.instance.Handle, modifierKeyCode, virtualKeyCode, handler);
|
||||||
return false; // TODO
|
return false; // TODO
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
|
@ -202,7 +202,7 @@ namespace Greenshot.Plugin {
|
||||||
/// <param name="virtualKeyCode"></param>
|
/// <param name="virtualKeyCode"></param>
|
||||||
/// <param name="handler"></param>
|
/// <param name="handler"></param>
|
||||||
/// <returns>bool true if all went okay</returns>
|
/// <returns>bool true if all went okay</returns>
|
||||||
bool RegisterHotKey(int modifierKeyCode, int virtualKeyCode, HotKeyHandler handler);
|
bool RegisterHotKey(uint modifierKeyCode, uint virtualKeyCode, HotKeyHandler handler);
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface IGreenshotPlugin {
|
public interface IGreenshotPlugin {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue