mehhh im tired. no time for copy/paste. just a stub and then i sleep

This commit is contained in:
zeromus 2008-05-30 06:18:14 +00:00
parent 88669859ff
commit 113c75cd40
1 changed files with 9 additions and 0 deletions

View File

@ -201,6 +201,11 @@ static void ColumnSet(int column)
RedrawList();
}
//copies the current selection to the clipboard
static void Copy()
{
}
//The subclass wndproc for the listview header
static LRESULT APIENTRY HeaderWndProc(HWND hWnd,UINT msg,WPARAM wParam,LPARAM lParam)
{
@ -408,6 +413,10 @@ BOOL CALLBACK WndprocTasEdit(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPar
Export();
break;
case ACCEL_CTRL_C:
Copy();
break;
case ACCEL_CTRL_W:
KillTasEdit();
break;