• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión1667248c2e0986f429cb1fe0da0441737d1e9e5d (tree)
Tiempo2012-03-24 11:34:53
Autorqwerty2501 <qwerty2501@user...>
Commiterqwerty2501

Log Message

クッキー取得実装

Cambiar Resumen

Diferencia incremental

Binary files a/nlite.suo and b/nlite.suo differ
--- a/nlite_common/define.cpp
+++ b/nlite_common/define.cpp
@@ -3,6 +3,6 @@
33 #include "namespace_start.h"
44
55
6-
6+nregex SSS;
77
88 #include "namespace_end.h"
\ No newline at end of file
--- a/nlite_common/define.h
+++ b/nlite_common/define.h
@@ -2,6 +2,7 @@
22
33
44 #include <string>
5+#include <boost\format.hpp>
56 #include <regex>
67 #include "namespace_start.h"
78
@@ -57,7 +58,7 @@ typedef std::tr1::basic_regex<CharU16> u16regex;
5758
5859 typedef u16regex nregex;
5960
60-//typedef boost::wformat nformat;
61+typedef boost::wformat nformat;
6162
6263
6364 //
@@ -74,6 +75,8 @@ typedef u16regex nregex;
7475 ////////////////////////////////////////////////////////////////////////////////////////////////
7576
7677
78+extern nregex SSS;
79+
7780
7881
7982
--- a/nlite_cookie/chromecookiegetter.cpp
+++ b/nlite_cookie/chromecookiegetter.cpp
@@ -19,7 +19,7 @@ Bool CChromeCookieGetter::GetCookieInternal(const NString &domein,const NString
1919 Bool result = false;
2020
2121
22- NString sql((boost::wformat(SQL.c_str()) % name % (_T("%") + domein)).str());
22+ NString sql((nformat(SQL.c_str()) % name % (_T("%") + domein)).str());
2323
2424 result = GetCookieSQLSingleFile(cookieFilePath,sql,cookie);
2525
--- a/nlite_cookie/firefoxcookiegetter.cpp
+++ b/nlite_cookie/firefoxcookiegetter.cpp
@@ -15,7 +15,7 @@ Bool CFireFoxCookieGetter::GetCookieInternal(const NString &domein,const NString
1515 Bool result = false;
1616
1717
18- NString sql((boost::wformat(SQL.c_str()) % name % domein).str());
18+ NString sql((nformat(SQL.c_str()) % name % domein).str());
1919
2020 result = GetCookieSQLSingleFile(cookieFilePath,sql,cookie);
2121