Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
it compiles; untested
Browse files Browse the repository at this point in the history
  • Loading branch information
FauxFaux committed Mar 3, 2015
1 parent 21c8d06 commit 50ccc60
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
3 changes: 2 additions & 1 deletion terminal.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ struct terminal_tag {
int attr_mask;

wchar_t *paste_buffer;
int paste_len, paste_pos;
int paste_len, paste_pos, paste_hold;
long last_paste;

void (*resize_fn)(void *, int, int);
void *resize_ctx;
Expand Down
12 changes: 12 additions & 0 deletions windows/MSVC2010/putty/putty.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@
<ItemGroup>
<ClCompile Include="..\..\..\adb.c" />
<ClCompile Include="..\..\..\be_all_s.c" />
<ClCompile Include="..\..\..\callback.c" />
<ClCompile Include="..\..\..\cmdline.c" />
<ClCompile Include="..\..\..\conf.c" />
<ClCompile Include="..\..\..\config.c" />
<ClCompile Include="..\..\..\cproxy.c" />
<ClCompile Include="..\..\..\dialog.c" />
<ClCompile Include="..\..\..\errsock.c" />
<ClCompile Include="..\..\..\import.c" />
<ClCompile Include="..\..\..\ldisc.c" />
<ClCompile Include="..\..\..\ldiscucs.c" />
Expand Down Expand Up @@ -45,6 +47,8 @@
<ClCompile Include="..\..\..\sshdh.c" />
<ClCompile Include="..\..\..\sshdss.c" />
<ClCompile Include="..\..\..\sshdssg.c" />
<ClCompile Include="..\..\..\sshecc.c" />
<ClCompile Include="..\..\..\sshecdsag.c" />
<ClCompile Include="..\..\..\sshgssc.c" />
<ClCompile Include="..\..\..\sshmd5.c" />
<ClCompile Include="..\..\..\sshprime.c" />
Expand All @@ -55,6 +59,9 @@
<ClCompile Include="..\..\..\sshsh256.c" />
<ClCompile Include="..\..\..\sshsh512.c" />
<ClCompile Include="..\..\..\sshsha.c" />
<ClCompile Include="..\..\..\sshshare.c">
<DebugInformationFormat Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ProgramDatabase</DebugInformationFormat>
</ClCompile>
<ClCompile Include="..\..\..\sshzlib.c" />
<ClCompile Include="..\..\..\telnet.c" />
<ClCompile Include="..\..\..\terminal.c" />
Expand Down Expand Up @@ -95,6 +102,11 @@
<ClCompile Include="..\..\..\windows\winutils.c" />
<ClCompile Include="..\..\..\windows\winx11.c" />
<ClCompile Include="..\..\..\x11fwd.c" />
<ClCompile Include="..\..\winhsock.c" />
<ClCompile Include="..\..\winnpc.c" />
<ClCompile Include="..\..\winnps.c" />
<ClCompile Include="..\..\winsecur.c" />
<ClCompile Include="..\..\winshare.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\charset\charset.h" />
Expand Down
2 changes: 1 addition & 1 deletion windows/version.rc2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* welcome.
*/

#include "version.h"
#include "../version.h"

/*
* The actual VERSIONINFO resource.
Expand Down

0 comments on commit 50ccc60

Please sign in to comment.