OSDN Git Service

余分な処理を削除
authorqwerty2501 <riot313@gmail.com>
Mon, 6 Feb 2012 15:13:41 +0000 (00:13 +0900)
committerqwerty2501 <riot313@gmail.com>
Mon, 6 Feb 2012 15:13:41 +0000 (00:13 +0900)
nlite.suo
nlite/nlite_commentview.cpp
nlite/nlite_nlib.cpp

index 250e0c8..ed71e2c 100644 (file)
Binary files a/nlite.suo and b/nlite.suo differ
index fd98270..a80b967 100644 (file)
@@ -893,8 +893,7 @@ namespace nlite{
 
        VOID CCommentListWindow::OnPaint(HDC in_hdc){
 
-
-
+               this->self.refAuth.GetUserSession();
                RECT windowRect;
                RECT listRect = {0};
                RECT clientRect;
index 997133c..b6c0ec3 100644 (file)
@@ -31,21 +31,7 @@ VOID CNicoVideoAuth::SetBrowserType(BROWSERTYPE bt){
 
                throw NLIBException(TEXT("\83j\83R\83j\83R\93®\89æ\94F\8fØ\8fî\95ñ\8eæ\93¾\82É\8e¸\94s\82µ\82Ü\82µ\82½"),rslt,__LINE__,TEXT(__FILE__),TEXT(__FUNCTION__));
        }
-       CString domein(TEXT("http://") +  CString(WWW_NICO_VIDEO_DOMEINNAME));
-       std::vector<TCHAR> userSession(_tcslen(this->GetUserSession()) + 1);
-       _tcscpy(&userSession[0],this->GetUserSession());
-       LPTSTR name = &userSession[0];
-       LPTSTR val =_tcsstr(&userSession[0],TEXT("="));
-
-       if(val != NULL){
-               *(val) = TEXT('\0');
-               val++;
-               wincheck(::GetLastError());
-               //dumpln(TEXT("left:%s,right:%s"),userSession.Left(sertchEquol),userSession.Right(sertchEquol));
-               BOOL rslt2 = ::InternetSetCookie(domein,name,val);
-               BOOL rslt = ::InternetSetCookieEx(domein,name,val,  INTERNET_COOKIE_THIRD_PARTY,NULL);
-               wincheck(::GetLastError());
-       }
+       
 }