Revisión | 1667248c2e0986f429cb1fe0da0441737d1e9e5d (tree) |
---|---|
Tiempo | 2012-03-24 11:34:53 |
Autor | qwerty2501 <qwerty2501@user...> |
Commiter | qwerty2501 |
クッキー取得実装
@@ -3,6 +3,6 @@ | ||
3 | 3 | #include "namespace_start.h" |
4 | 4 | |
5 | 5 | |
6 | - | |
6 | +nregex SSS; | |
7 | 7 | |
8 | 8 | #include "namespace_end.h" |
\ No newline at end of file |
@@ -2,6 +2,7 @@ | ||
2 | 2 | |
3 | 3 | |
4 | 4 | #include <string> |
5 | +#include <boost\format.hpp> | |
5 | 6 | #include <regex> |
6 | 7 | #include "namespace_start.h" |
7 | 8 |
@@ -57,7 +58,7 @@ typedef std::tr1::basic_regex<CharU16> u16regex; | ||
57 | 58 | |
58 | 59 | typedef u16regex nregex; |
59 | 60 | |
60 | -//typedef boost::wformat nformat; | |
61 | +typedef boost::wformat nformat; | |
61 | 62 | |
62 | 63 | |
63 | 64 | // |
@@ -74,6 +75,8 @@ typedef u16regex nregex; | ||
74 | 75 | //////////////////////////////////////////////////////////////////////////////////////////////// |
75 | 76 | |
76 | 77 | |
78 | +extern nregex SSS; | |
79 | + | |
77 | 80 | |
78 | 81 | |
79 | 82 |
@@ -19,7 +19,7 @@ Bool CChromeCookieGetter::GetCookieInternal(const NString &domein,const NString | ||
19 | 19 | Bool result = false; |
20 | 20 | |
21 | 21 | |
22 | - NString sql((boost::wformat(SQL.c_str()) % name % (_T("%") + domein)).str()); | |
22 | + NString sql((nformat(SQL.c_str()) % name % (_T("%") + domein)).str()); | |
23 | 23 | |
24 | 24 | result = GetCookieSQLSingleFile(cookieFilePath,sql,cookie); |
25 | 25 |
@@ -15,7 +15,7 @@ Bool CFireFoxCookieGetter::GetCookieInternal(const NString &domein,const NString | ||
15 | 15 | Bool result = false; |
16 | 16 | |
17 | 17 | |
18 | - NString sql((boost::wformat(SQL.c_str()) % name % domein).str()); | |
18 | + NString sql((nformat(SQL.c_str()) % name % domein).str()); | |
19 | 19 | |
20 | 20 | result = GetCookieSQLSingleFile(cookieFilePath,sql,cookie); |
21 | 21 |