Skip to content

Commit

Permalink
1.8.62
Browse files Browse the repository at this point in the history
  • Loading branch information
sunghwan2789 committed Jan 4, 2016
1 parent f93f4b6 commit 873d315
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified Server/Resource.rc
Binary file not shown.
2 changes: 1 addition & 1 deletion Server/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ volatile bool bPipeConnected;
DWORD WINAPI ServerThread(LPVOID lParam)
{
hPipe = CreateNamedPipe(_T("\\\\.\\pipe\\osu!Lyrics"), PIPE_ACCESS_OUTBOUND,
PIPE_TYPE_MESSAGE | PIPE_WAIT, 1, nBufferSize, 0, INFINITE, NULL);
PIPE_TYPE_MESSAGE | PIPE_WAIT, 1, nBufferSize * sizeof(tstring::value_type), 0, INFINITE, NULL);
tstring message;
DWORD nNumberOfBytesWritten;
// 스레드 종료 요청이 들어올 때까지 클라이언트 접속 무한 대기
Expand Down
6 changes: 3 additions & 3 deletions osu!Lyrics/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[assembly: AssemblyDescription("가사가 궁금해")]
[assembly: AssemblyCompany("BloodCat")]
[assembly: AssemblyProduct("osu!Lyrics")]
[assembly: AssemblyCopyright("BloodCat 2014-2015")]
[assembly: AssemblyCopyright("BloodCat 2014-2016")]

// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에
// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면
Expand All @@ -30,6 +30,6 @@
// 지정되도록 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.8.61")]
[assembly: AssemblyInformationalVersion("1.8.61")]
[assembly: AssemblyFileVersion("1.8.62")]
[assembly: AssemblyInformationalVersion("1.8.62")]
[assembly: NeutralResourcesLanguageAttribute("ko-KR")]

0 comments on commit 873d315

Please sign in to comment.