Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1087)

Side by Side Diff: third_party/lzma/v4_65/files/CPP/7zip/Archive/Common/ParseProperties.h

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // ParseProperties.h
2
3 #ifndef __PARSEPROPERTIES_H
4 #define __PARSEPROPERTIES_H
5
6 #include "Common/MyString.h"
7 #include "Common/Types.h"
8
9 HRESULT ParsePropValue(const UString &name, const PROPVARIANT &prop, UInt32 &res Value);
10 HRESULT ParsePropDictionaryValue(const UString &srcStringSpec, UInt32 &dicSize);
11 HRESULT ParsePropDictionaryValue(const UString &name, const PROPVARIANT &prop, U Int32 &resValue);
12
13 bool StringToBool(const UString &s, bool &res);
14 HRESULT SetBoolProperty(bool &dest, const PROPVARIANT &value);
15 int ParseStringToUInt32(const UString &srcString, UInt32 &number);
16 HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32 default NumThreads, UInt32 &numThreads);
17
18 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698