Refactoring the interop code to a separate project. Still need to add the interop DLL to the final exe... or maybe I want to use references inside the projects...

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1688 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-03-06 17:41:19 +00:00
commit 7666127106
43 changed files with 51 additions and 4752 deletions

View file

@ -321,9 +321,9 @@ namespace Greenshot.Helpers {
}
}
public void AddEmptyFrame() {
public void AddEmptyFrames(int frames) {
lock (this) {
position++;
position += frames;
}
}