rhodes 2.4.1 → 3.0.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +7 -0
- data/Rakefile +7 -36
- data/doc/build.txt +48 -22
- data/doc/device-caps.txt +130 -1
- data/doc/rhom.txt +9 -3
- data/doc/test-log-debug.txt +5 -2
- data/lib/extensions/barcode/ext/barcode/platform/android/Rakefile +40 -20
- data/lib/extensions/barcode/ext/barcode/platform/android/ZXing_Info/AUTHORS +58 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/ZXing_Info/CHANGES +266 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/ZXing_Info/COPYING +201 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/ZXing_Info/README +11 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/ext_build.files +173 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/jni/src/barcode.cpp +34 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/BarcodeFormat.java +103 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/Binarizer.java +80 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/BinaryBitmap.java +128 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/ChecksumException.java +37 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/DecodeHintType.java +79 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/EncodeHintType.java +39 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/FormatException.java +38 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/LuminanceSource.java +113 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/MultiFormatReader.java +166 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/MultiFormatWriter.java +65 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/NotFoundException.java +37 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/Reader.java +64 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/ReaderException.java +98 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/Result.java +143 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/ResultMetadataType.java +109 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/ResultPoint.java +127 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/ResultPointCallback.java +29 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/Writer.java +54 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/WriterException.java +35 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/AbstractDoCoMoResultParser.java +39 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/AddressBookAUResultParser.java +73 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/AddressBookDoCoMoResultParser.java +85 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/AddressBookParsedResult.java +122 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/BizcardResultParser.java +94 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/BookmarkDoCoMoResultParser.java +46 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/CalendarParsedResult.java +134 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/EmailAddressParsedResult.java +61 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/EmailAddressResultParser.java +64 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/EmailDoCoMoResultParser.java +87 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ExpandedProductParsedResult.java +195 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ExpandedProductResultParser.java +199 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/GeoParsedResult.java +132 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/GeoResultParser.java +77 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ISBNParsedResult.java +39 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ISBNResultParser.java +54 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ParsedResult.java +73 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ParsedResultType.java +53 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ProductParsedResult.java +49 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ProductResultParser.java +66 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/ResultParser.java +319 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/SMSMMSResultParser.java +107 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/SMSParsedResult.java +104 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/SMSTOMMSTOResultParser.java +57 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/TelParsedResult.java +54 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/TelResultParser.java +44 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/TextParsedResult.java +48 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/URIParsedResult.java +113 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/URIResultParser.java +87 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/URLTOResultParser.java +47 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/VCardResultParser.java +346 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/VEventResultParser.java +54 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/WifiParsedResult.java +53 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/WifiResultParser.java +50 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/optional/AbstractNDEFResultParser.java +45 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/optional/NDEFRecord.java +87 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/optional/NDEFSmartPosterParsedResult.java +63 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/optional/NDEFSmartPosterResultParser.java +81 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/optional/NDEFTextResultParser.java +57 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/result/optional/NDEFURIResultParser.java +95 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/BitArray.java +247 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/BitMatrix.java +226 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/BitSource.java +97 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/CharacterSetECI.java +110 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/Collections.java +53 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/Comparator.java +27 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/DecoderResult.java +63 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/DefaultGridSampler.java +81 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/DetectorResult.java +46 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/ECI.java +52 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/GlobalHistogramBinarizer.java +196 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/GridSampler.java +171 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/HybridBinarizer.java +185 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/PerspectiveTransform.java +148 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/StringUtils.java +191 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/detector/MonochromeRectangleDetector.java +209 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/detector/WhiteRectangleDetector.java +316 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/reedsolomon/GF256.java +139 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/reedsolomon/GF256Poly.java +263 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/reedsolomon/ReedSolomonDecoder.java +194 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/reedsolomon/ReedSolomonEncoder.java +75 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/common/reedsolomon/ReedSolomonException.java +31 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/datamatrix/DataMatrixReader.java +161 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/datamatrix/decoder/BitMatrixParser.java +446 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/datamatrix/decoder/DataBlock.java +118 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/datamatrix/decoder/DecodedBitStreamParser.java +462 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/datamatrix/decoder/Decoder.java +134 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/datamatrix/decoder/Version.java +242 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/datamatrix/detector/Detector.java +348 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/multi/ByQuadrantReader.java +96 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/multi/GenericMultipleBarcodeReader.java +156 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/multi/MultipleBarcodeReader.java +37 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/multi/qrcode/QRCodeMultiReader.java +80 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/multi/qrcode/detector/MultiDetector.java +72 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/multi/qrcode/detector/MultiFinderPatternFinder.java +324 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/CodaBarReader.java +263 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/Code128Reader.java +473 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/Code128Writer.java +73 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/Code39Reader.java +333 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/Code39Writer.java +82 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/Code93Reader.java +273 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/EAN13Reader.java +135 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/EAN13Writer.java +81 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/EAN8Reader.java +72 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/EAN8Writer.java +76 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/EANManufacturerOrgSupport.java +170 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/ITFReader.java +348 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/ITFWriter.java +68 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/MultiFormatOneDReader.java +109 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/MultiFormatUPCEANReader.java +113 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/OneDReader.java +297 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/UPCAReader.java +75 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/UPCEANExtensionSupport.java +186 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/UPCEANReader.java +355 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/UPCEANWriter.java +104 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/UPCEReader.java +153 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/AbstractRSSReader.java +110 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/DataCharacter.java +37 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/FinderPattern.java +48 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/Pair.java +41 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/RSS14Reader.java +494 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/RSSUtils.java +155 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/BitArrayBuilder.java +85 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/ExpandedPair.java +68 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/RSSExpandedReader.java +578 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI013103decoder.java +47 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI01320xDecoder.java +55 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI01392xDecoder.java +66 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI01393xDecoder.java +76 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI013x0x1xDecoder.java +106 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI013x0xDecoder.java +56 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI01AndOtherAIs.java +56 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI01decoder.java +81 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AI01weightDecoder.java +58 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AbstractExpandedDecoder.java +85 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/AnyAIDecoder.java +48 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/BlockParsedResult.java +60 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/CurrentParsingState.java +69 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/DecodedChar.java +52 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/DecodedInformation.java +63 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/DecodedNumeric.java +79 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/DecodedObject.java +44 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/FieldParser.java +285 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/oned/rss/expanded/decoders/GeneralAppIdDecoder.java +414 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/pdf417/PDF417Reader.java +79 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/pdf417/decoder/BitMatrixParser.java +1163 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/pdf417/decoder/DecodedBitStreamParser.java +629 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/pdf417/decoder/Decoder.java +150 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/pdf417/detector/Detector.java +498 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/QRCodeReader.java +166 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/QRCodeWriter.java +108 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/BitMatrixParser.java +203 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/DataBlock.java +123 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/DataMask.java +155 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/DecodedBitStreamParser.java +261 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/Decoder.java +148 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/ErrorCorrectionLevel.java +86 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/FormatInformation.java +171 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/Mode.java +112 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/decoder/Version.java +586 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/detector/AlignmentPattern.java +48 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/detector/AlignmentPatternFinder.java +279 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/detector/Detector.java +400 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/detector/FinderPattern.java +63 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/detector/FinderPatternFinder.java +585 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/detector/FinderPatternInfo.java +49 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/encoder/BlockPair.java +37 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/encoder/ByteMatrix.java +97 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/encoder/Encoder.java +557 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/encoder/MaskUtil.java +217 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/encoder/MatrixUtil.java +524 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/qrcode/encoder/QRCode.java +239 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/rhomobile/barcode/Barcode.java +63 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/rhomobile/barcode/RhoLuminanceSource.java +75 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/Barcode.xcodeproj/project.pbxproj +74 -318
- data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/barcode.m +70 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/COPYING +27 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarCaptureReader.h +105 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarHelpController.h +60 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarImage.h +69 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarImageScanner.h +51 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarReaderController.h +142 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarReaderView.h +118 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarReaderViewController.h +100 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarSDK.h +33 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/ZBarSymbol.h +71 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar.h +1476 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/Decoder.h +201 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/Exception.h +187 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/Image.h +321 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/ImageScanner.h +130 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/Processor.h +223 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/Scanner.h +162 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/Symbol.h +529 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/Video.h +170 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Headers/ZBarSDK/zbar/Window.h +136 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/LICENSE +504 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/README +59 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Resources/zbar-back.png +0 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Resources/zbar-help.html +88 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Resources/zbar-helpicons.png +0 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/Resources/zbar-samples.png +0 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/ZBarSDK/libzbar.a +0 -0
- data/lib/extensions/debugger/debugger.rb +215 -67
- data/lib/extensions/nfc/ext/nfc/platform/android/AndroidManifest.xml +1 -1
- data/lib/extensions/nfc/ext/nfc/platform/android/src/com/nfc/Nfc.java +14 -2
- data/lib/extensions/timeout/timeout.rb +114 -0
- data/lib/framework/rho/render.rb +14 -16
- data/lib/framework/rho/rho.rb +38 -14
- data/lib/framework/rho/rhoapplication.rb +1 -1
- data/lib/framework/rho/rhocontroller.rb +3 -3
- data/lib/framework/rho/rhofsconnector.rb +18 -6
- data/lib/framework/rho/rhoviewhelpers.rb +1 -1
- data/lib/framework/rhoappmanifest.rb +44 -0
- data/lib/framework/rhodes.rb +1 -1
- data/lib/framework/rhoframework.rb +31 -11
- data/lib/framework/rholang/localization_simplified.rb +10 -6
- data/lib/framework/rhom/rhom_object_factory.rb +3 -3
- data/lib/framework/version.rb +1 -1
- data/lib/rhodes.rb +1 -1
- data/platform/android/Rhodes/AndroidManifest.xml +2 -2
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_RhodesApplication.h +32 -8
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_RhodesService.h +21 -21
- data/platform/android/Rhodes/jni/src/rhocryptimpl.cpp +1 -0
- data/platform/android/Rhodes/jni/src/rhodes.cpp +21 -9
- data/platform/android/Rhodes/jni/src/sslimpl.cpp +1 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/BaseActivity.java +7 -6
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/PushReceiver.java +19 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoCryptImpl.java +2 -2
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivity.java +24 -15
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesApplication.java +39 -47
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +113 -106
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/Alert.java +11 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/StatusNotification.java +49 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +1 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +5 -1
- data/platform/android/build/RhodesSRC_build.files +1 -0
- data/platform/android/build/android.rake +93 -6
- data/platform/bb/RubyVM/src/com/rho/RhodesApp.java +5 -4
- data/platform/bb/RubyVM/src/com/rho/file/RhoFile.java +10 -0
- data/platform/bb/RubyVM/src/com/rho/sync/SyncEngine.java +16 -15
- data/platform/bb/RubyVM/src/com/rho/sync/SyncNotify.java +2 -2
- data/platform/bb/RubyVM/src/com/rho/sync/SyncSource.java +21 -19
- data/platform/bb/rhodes/src/com/rho/BrowserAdapter5.java +2 -2
- data/platform/bb/rhodes/src/com/rho/rubyext/System.java +6 -1
- data/platform/bb/rhodes/src/com/rho/rubyext/WebView.java +10 -3
- data/platform/bb/rhodes/src/rhomobile/RhodesApplication.java +21 -1
- data/platform/iphone/Classes/SimpleMainView.m +5 -5
- data/platform/iphone/Info.plist +1 -1
- data/platform/iphone/rbuild/iphone.rake +30 -1
- data/platform/iphone/rhorunner.xcodeproj/project.pbxproj +12 -0
- data/platform/shared/SyncClient/SyncClient.cpp +136 -20
- data/platform/shared/SyncClient/SyncClient.h +17 -0
- data/platform/shared/common/AppMenu.cpp +6 -1
- data/platform/shared/common/RhoConf.cpp +13 -1
- data/platform/shared/common/RhoConf.h +3 -1
- data/platform/shared/common/RhoDefs.h +10 -0
- data/platform/shared/common/RhoFile.cpp +15 -0
- data/platform/shared/common/RhoFile.h +1 -0
- data/platform/shared/common/RhodesApp.cpp +16 -3
- data/platform/shared/common/RhodesApp.h +1 -0
- data/platform/shared/common/RhodesAppBase.cpp +102 -62
- data/platform/shared/common/RhodesAppBase.h +7 -1
- data/platform/shared/curl/lib/rhossl.c +1 -0
- data/platform/shared/db/DBAdapter.cpp +14 -2
- data/platform/shared/logging/RhoLogConf.cpp +21 -0
- data/platform/shared/logging/RhoLogConf.h +11 -0
- data/platform/shared/logging/RhoLogSink.cpp +24 -0
- data/platform/shared/logging/RhoLogSink.h +20 -1
- data/platform/shared/net/HttpServer.cpp +8 -6
- data/platform/shared/net/RawSocket.cpp +130 -0
- data/platform/shared/net/RawSocket.h +74 -0
- data/platform/shared/ruby/ext/rho/rhoruby.c +37 -1
- data/platform/shared/ruby/ext/rho/rhosupport.c +74 -21
- data/platform/shared/ruby/ext/sqlite3_api/sqlite3_api_wrap.c +9 -1
- data/platform/shared/ruby/vm_eval.c +4 -3
- data/platform/shared/sync/SyncEngine.cpp +11 -12
- data/platform/shared/sync/SyncEngine.h +2 -2
- data/platform/shared/sync/SyncNotify.cpp +41 -13
- data/platform/shared/sync/SyncNotify.h +20 -3
- data/platform/shared/sync/SyncSource.cpp +21 -19
- data/platform/shared/sync/SyncThread.cpp +11 -1
- data/platform/shared/sync/SyncThread.h +3 -0
- data/platform/shared/test/test_helper.cpp +7 -0
- data/platform/win32/RhoSimulator/QtCore4.dll +0 -0
- data/platform/win32/RhoSimulator/QtGui4.dll +0 -0
- data/platform/win32/RhoSimulator/QtNetwork4.dll +0 -0
- data/platform/win32/RhoSimulator/QtWebKit4.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qgif4.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qjpeg4.dll +0 -0
- data/platform/win32/RhoSimulator/rhosimulator.exe +0 -0
- data/platform/wm/RhoLib/RhoLib.vcproj +762 -14
- data/platform/wm/build/wm.rake +87 -10
- data/platform/wm/rhodes.sln +155 -72
- data/platform/wm/rhodes/MainWindow.cpp +5 -2
- data/platform/wm/rhodes/MainWindow.h +9 -1
- data/platform/wm/rhodes/RhoNativeViewManager.cpp +4 -0
- data/platform/wm/rhodes/Rhodes.cpp +60 -6
- data/platform/wm/rhodes/emulator/ExternalWebView.cpp +20 -0
- data/platform/wm/rhodes/emulator/ExternalWebView.h +23 -0
- data/platform/wm/rhodes/emulator/ExternalWebView.ui +46 -0
- data/platform/wm/rhodes/emulator/MainWindowCallback.h +18 -0
- data/platform/wm/rhodes/emulator/MainWindowProxy.cpp +268 -0
- data/platform/wm/rhodes/emulator/MainWindowProxy.h +34 -0
- data/platform/wm/rhodes/emulator/MainWindowQt.cpp +345 -0
- data/platform/wm/rhodes/emulator/MainWindowQt.h +118 -0
- data/platform/wm/rhodes/emulator/NativeToolbarQt.cpp +57 -0
- data/platform/wm/rhodes/emulator/NativeToolbarQt.h +52 -0
- data/platform/wm/rhodes/emulator/QtMainWindow.cpp +219 -0
- data/platform/wm/rhodes/emulator/QtMainWindow.h +62 -0
- data/platform/wm/rhodes/emulator/QtMainWindow.ui +122 -0
- data/platform/wm/rhodes/{RhoCryptImpl.cpp → rho/common/RhoCryptImpl.cpp} +0 -0
- data/platform/wm/rhodes/{RhoCryptImpl.h → rho/common/RhoCryptImpl.h} +0 -0
- data/platform/wm/rhodes/rho/rubyext/NativeToolbar.cpp +2 -86
- data/platform/wm/rhodes/rho/rubyext/NativeToolbarExt.cpp +87 -0
- data/platform/wm/rhodes/rho/rubyext/NativeToolbarExt.h +6 -0
- data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +60 -0
- data/platform/wm/rhodes/rhodes.vcproj +4025 -365
- data/platform/wm/rhodes/signature/Signature.cpp +29 -13
- data/platform/wm/rubylib/rubylib.vcproj +1167 -195
- data/platform/wm/shttpd/shttpd.vcproj +4 -4
- data/platform/wm/sqlite3/sqlite3.vcproj +441 -13
- data/platform/wm/syncengine/syncengine.vcproj +443 -15
- data/platform/wm/tcmalloc/tcmalloc.vcproj +0 -154
- data/platform/wm/tools/detool/LogServer.cpp +150 -0
- data/platform/wm/tools/detool/LogServer.h +23 -0
- data/platform/wm/tools/detool/detool.cpp +42 -4
- data/platform/wm/tools/detool/detool.vcproj +10 -1
- data/platform/wp7/IronRuby/Bin/Silverlight3Release/IronRuby.Libraries.dll +0 -0
- data/platform/wp7/IronRuby/Bin/Silverlight3Release/IronRuby.dll +0 -0
- data/platform/wp7/IronRuby/Bin/Silverlight3Release/Microsoft.Dynamic.dll +0 -0
- data/platform/wp7/IronRuby/Bin/Silverlight3Release/Microsoft.Scripting.Core.dll +0 -0
- data/platform/wp7/IronRuby/Bin/Silverlight3Release/Microsoft.Scripting.dll +0 -0
- data/platform/wp7/RhoAppRunner/Program.cs +20 -3
- data/platform/wp7/RhoLogServer/Program.cs +22 -0
- data/platform/wp7/RhoLogServer/Properties/AssemblyInfo.cs +36 -0
- data/platform/wp7/RhoLogServer/RhoLogServer.csproj +65 -0
- data/platform/wp7/RhoLogServer/SocketServer.cs +210 -0
- data/platform/wp7/RhoRubyExtGen/RhoAsyncHttp.cs +6 -0
- data/platform/wp7/RhoRubyLib/Initializers.Generated.cs +3 -2
- data/platform/wp7/RhoRubyLib/RhoRuby.cs +82 -0
- data/platform/wp7/RhoRubyLib/RhoRubyLib.csproj +7 -5
- data/platform/wp7/RhoRubyLib/WP_PlatformAdaptationLayer.cs +1 -1
- data/platform/wp7/RhoRubyLib/common/RhoParams.cs +1 -1
- data/platform/wp7/RhoRubyLib/common/ThreadQueue.cs +4 -1
- data/platform/wp7/RhoRubyLib/db/DBAdapter.cs +2 -2
- data/platform/wp7/RhoRubyLib/logging/IRhoLogSink.cs +1 -1
- data/platform/wp7/RhoRubyLib/logging/RhoEmptyLogger.cs +30 -0
- data/platform/wp7/RhoRubyLib/logging/RhoLogConf.cs +10 -0
- data/platform/wp7/RhoRubyLib/logging/RhoLogFileSink.cs +6 -1
- data/platform/wp7/RhoRubyLib/logging/RhoLogServerSink.cs +56 -0
- data/platform/wp7/RhoRubyLib/logging/RhoLogger.cs +24 -11
- data/platform/wp7/RhoRubyLib/net/AsyncHttp.cs +57 -14
- data/platform/wp7/RhoRubyLib/net/NetRequest.cs +32 -9
- data/platform/wp7/RhoRubyLib/rubyext/RhoAsyncHttp.cs +7 -0
- data/platform/wp7/RhoRubyLib/rubyext/RhoKernelOps.cs +6 -0
- data/platform/wp7/RhoRubyLib/sync/SyncEngine.cs +20 -16
- data/platform/wp7/RhoRubyLib/sync/SyncNotify.cs +2 -2
- data/platform/wp7/RhoRubyLib/sync/SyncSource.cs +138 -40
- data/platform/wp7/WPApplication/rho/apps/app/layout.erb +3 -1
- data/platform/wp7/build/wp.rake +151 -12
- data/platform/wp7/rhodes.sln +10 -0
- data/platform/wp7/rhodes/App.xaml.cs +6 -0
- data/platform/wp7/rhodes/MainPage.xaml +3 -0
- data/platform/wp7/rhodes/MainPage.xaml.cs +19 -0
- data/platform/wp7/rhodes/Rhodes.csproj +4 -2
- data/rakefile.rb +7 -36
- data/res/build-tools/RhoAppRunner.exe +0 -0
- data/res/build-tools/RhoLogServer.exe +0 -0
- data/res/build-tools/detool.exe +0 -0
- data/res/build-tools/wp7explorer.exe +0 -0
- data/res/generators/templates/application/app/layout.erb +3 -1
- data/res/generators/templates/application/public/jqtouch/jqtouch.js +1 -1
- data/rhodes.gemspec +1 -1
- data/spec/framework_spec/app/layout.erb +1 -1
- data/spec/framework_spec/build.yml +1 -0
- data/spec/perfomance_spec/app/layout.erb +3 -0
- data/spec/phone_spec/app/Account_s/account_s.rb +4 -1
- data/spec/phone_spec/app/spec/rhom_object_spec.rb +30 -1
- data/spec/phone_spec/app/spec_runner.rb +1 -1
- data/spec/phone_spec/build.yml +4 -1
- metadata +262 -10
- data/platform/wp7/IronRuby/Languages/Ruby/Ruby/Builtins/ConsoleStream.cs +0 -107
@@ -63,18 +63,30 @@ LRESULT CRhoTakeSignatureDlg::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPA
|
|
63
63
|
RHO_ASSERT(SHCreateMenuBar(&mbi));
|
64
64
|
|
65
65
|
HRESULT hr = S_OK;
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
66
|
+
|
67
|
+
HRESULT co_init_result = CoInitializeEx(NULL, 0/*COINIT_APARTMENTTHREADED*/);
|
68
|
+
if ( (co_init_result == S_OK) || (co_init_result == S_FALSE) ) {
|
69
|
+
|
70
|
+
hr = ::CoCreateInstance(CLSID_InkOverlay,
|
71
|
+
NULL,
|
72
|
+
CLSCTX_INPROC_SERVER,
|
73
|
+
IID_IInkOverlay,
|
74
|
+
(void **)&m_pInkOverlay);
|
75
|
+
|
76
|
+
//ASSERT(SUCCEEDED(hr));
|
77
|
+
if (m_pInkOverlay != NULL) {
|
78
|
+
// Attach the inkoverlay object to the window and enable it to start collecting ink
|
79
|
+
m_pInkOverlay->put_hWnd((long)m_hWnd);
|
80
|
+
//ASSERT(SUCCEEDED(hr));
|
81
|
+
hr = m_pInkOverlay->put_Enabled(VARIANT_TRUE);
|
82
|
+
}
|
83
|
+
else {
|
84
|
+
RAWLOG_ERROR("ERROR: Can not get Ink Overlay in Signature Capture !");
|
85
|
+
}
|
86
|
+
}
|
87
|
+
else {
|
88
|
+
RAWLOG_ERROR("ERROR: Can not Signature CoInitialize !");
|
89
|
+
}
|
78
90
|
#endif
|
79
91
|
|
80
92
|
return FALSE;
|
@@ -221,7 +233,7 @@ HRESULT Imaging_SaveToFile(HBITMAP handle, LPTSTR filename, LPCTSTR format)
|
|
221
233
|
{
|
222
234
|
HRESULT res = S_OK;
|
223
235
|
#if defined(_WIN32_WCE)&& !defined( OS_PLATFORM_CE )
|
224
|
-
res = CoInitializeEx(NULL, COINIT_MULTITHREADED);
|
236
|
+
res = CoInitializeEx(NULL, 0/*COINIT_MULTITHREADED*/);
|
225
237
|
if ((res == S_OK) || (res == S_FALSE)) {
|
226
238
|
IImagingFactory* factory=NULL;
|
227
239
|
if (CoCreateInstance(CLSID_ImagingFactory, NULL, CLSCTX_INPROC_SERVER, IID_IImagingFactory, (void**)&factory) == S_OK) {
|
@@ -340,9 +352,13 @@ HRESULT Imaging_SaveToFile(HBITMAP handle, LPTSTR filename, LPCTSTR format)
|
|
340
352
|
}
|
341
353
|
}
|
342
354
|
}
|
355
|
+
else {
|
356
|
+
RAWLOG_ERROR("ERROR: Can not Signature Bitmap preparing get Image Factory !");
|
357
|
+
}
|
343
358
|
factory->Release();
|
344
359
|
CoUninitialize();
|
345
360
|
} else {
|
361
|
+
RAWLOG_ERROR("ERROR: Can not Signature Bitmap preparing CoInitialize !");
|
346
362
|
return res;
|
347
363
|
}
|
348
364
|
#endif
|
@@ -20,9 +20,6 @@
|
|
20
20
|
<Platform
|
21
21
|
Name="Win32"
|
22
22
|
/>
|
23
|
-
<Platform
|
24
|
-
Name="RhodesCE6 (ARMV4I)"
|
25
|
-
/>
|
26
23
|
<Platform
|
27
24
|
Name="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
28
25
|
/>
|
@@ -38,8 +35,8 @@
|
|
38
35
|
<Configurations>
|
39
36
|
<Configuration
|
40
37
|
Name="Debug|Pocket PC 2003 (ARMV4)"
|
41
|
-
OutputDirectory="
|
42
|
-
IntermediateDirectory="
|
38
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
39
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
43
40
|
ConfigurationType="4"
|
44
41
|
CharacterSet="1"
|
45
42
|
>
|
@@ -112,8 +109,8 @@
|
|
112
109
|
</Configuration>
|
113
110
|
<Configuration
|
114
111
|
Name="Debug|Smartphone 2003 (ARMV4)"
|
115
|
-
OutputDirectory="
|
116
|
-
IntermediateDirectory="
|
112
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
113
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
117
114
|
ConfigurationType="4"
|
118
115
|
CharacterSet="1"
|
119
116
|
>
|
@@ -327,8 +324,8 @@
|
|
327
324
|
</Configuration>
|
328
325
|
<Configuration
|
329
326
|
Name="Release|Pocket PC 2003 (ARMV4)"
|
330
|
-
OutputDirectory="
|
331
|
-
IntermediateDirectory="
|
327
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
328
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
332
329
|
ConfigurationType="4"
|
333
330
|
CharacterSet="1"
|
334
331
|
>
|
@@ -400,8 +397,8 @@
|
|
400
397
|
</Configuration>
|
401
398
|
<Configuration
|
402
399
|
Name="Release|Smartphone 2003 (ARMV4)"
|
403
|
-
OutputDirectory="
|
404
|
-
IntermediateDirectory="
|
400
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
401
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
405
402
|
ConfigurationType="4"
|
406
403
|
CharacterSet="1"
|
407
404
|
>
|
@@ -611,11 +608,11 @@
|
|
611
608
|
/>
|
612
609
|
</Configuration>
|
613
610
|
<Configuration
|
614
|
-
Name="
|
611
|
+
Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
|
615
612
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
616
613
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
617
614
|
ConfigurationType="4"
|
618
|
-
CharacterSet="
|
615
|
+
CharacterSet="1"
|
619
616
|
>
|
620
617
|
<Tool
|
621
618
|
Name="VCPreBuildEventTool"
|
@@ -637,12 +634,11 @@
|
|
637
634
|
Name="VCCLCompilerTool"
|
638
635
|
ExecutionBucket="7"
|
639
636
|
Optimization="0"
|
640
|
-
|
641
|
-
PreprocessorDefinitions="OS_PLATFORM_CE;_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);BUFSIZ=512;TLS_OUT_OF_INDEXES=0xFFFFFFFF;FILENAME_MAX=MAX_PATH;STATIC_LINKED"
|
637
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
642
638
|
MinimalRebuild="true"
|
643
639
|
RuntimeLibrary="1"
|
644
640
|
UsePrecompiledHeader="0"
|
645
|
-
WarningLevel="
|
641
|
+
WarningLevel="3"
|
646
642
|
DebugInformationFormat="3"
|
647
643
|
/>
|
648
644
|
<Tool
|
@@ -659,7 +655,7 @@
|
|
659
655
|
/>
|
660
656
|
<Tool
|
661
657
|
Name="VCLibrarianTool"
|
662
|
-
AdditionalOptions=" /subsystem:windowsce,
|
658
|
+
AdditionalOptions=" /subsystem:windowsce,4.20 /machine:ARM"
|
663
659
|
OutputFile="$(OutDir)/rubylib.lib"
|
664
660
|
/>
|
665
661
|
<Tool
|
@@ -687,11 +683,11 @@
|
|
687
683
|
/>
|
688
684
|
</Configuration>
|
689
685
|
<Configuration
|
690
|
-
Name="
|
686
|
+
Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
|
691
687
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
692
688
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
693
689
|
ConfigurationType="4"
|
694
|
-
CharacterSet="
|
690
|
+
CharacterSet="1"
|
695
691
|
>
|
696
692
|
<Tool
|
697
693
|
Name="VCPreBuildEventTool"
|
@@ -712,12 +708,12 @@
|
|
712
708
|
<Tool
|
713
709
|
Name="VCCLCompilerTool"
|
714
710
|
ExecutionBucket="7"
|
715
|
-
Optimization="
|
716
|
-
|
717
|
-
|
718
|
-
RuntimeLibrary="
|
711
|
+
Optimization="0"
|
712
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
713
|
+
MinimalRebuild="true"
|
714
|
+
RuntimeLibrary="1"
|
719
715
|
UsePrecompiledHeader="0"
|
720
|
-
WarningLevel="
|
716
|
+
WarningLevel="3"
|
721
717
|
DebugInformationFormat="3"
|
722
718
|
/>
|
723
719
|
<Tool
|
@@ -725,7 +721,7 @@
|
|
725
721
|
/>
|
726
722
|
<Tool
|
727
723
|
Name="VCResourceCompilerTool"
|
728
|
-
PreprocessorDefinitions="
|
724
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
729
725
|
Culture="1033"
|
730
726
|
AdditionalIncludeDirectories="$(IntDir)"
|
731
727
|
/>
|
@@ -734,7 +730,7 @@
|
|
734
730
|
/>
|
735
731
|
<Tool
|
736
732
|
Name="VCLibrarianTool"
|
737
|
-
AdditionalOptions=" /subsystem:windowsce,
|
733
|
+
AdditionalOptions=" /subsystem:windowsce,4.20 /machine:ARM"
|
738
734
|
OutputFile="$(OutDir)/rubylib.lib"
|
739
735
|
/>
|
740
736
|
<Tool
|
@@ -762,7 +758,7 @@
|
|
762
758
|
/>
|
763
759
|
</Configuration>
|
764
760
|
<Configuration
|
765
|
-
Name="
|
761
|
+
Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
766
762
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
767
763
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
768
764
|
ConfigurationType="4"
|
@@ -782,17 +778,18 @@
|
|
782
778
|
/>
|
783
779
|
<Tool
|
784
780
|
Name="VCMIDLTool"
|
781
|
+
TargetEnvironment="1"
|
785
782
|
/>
|
786
783
|
<Tool
|
787
784
|
Name="VCCLCompilerTool"
|
788
785
|
ExecutionBucket="7"
|
789
786
|
Optimization="0"
|
790
787
|
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby;..\..\shared"
|
791
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);
|
788
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);BUFSIZ=512;TLS_OUT_OF_INDEXES=0xFFFFFFFF;FILENAME_MAX=MAX_PATH;STATIC_LINKED"
|
792
789
|
MinimalRebuild="true"
|
793
790
|
RuntimeLibrary="1"
|
794
791
|
UsePrecompiledHeader="0"
|
795
|
-
WarningLevel="
|
792
|
+
WarningLevel="0"
|
796
793
|
DebugInformationFormat="3"
|
797
794
|
/>
|
798
795
|
<Tool
|
@@ -809,7 +806,7 @@
|
|
809
806
|
/>
|
810
807
|
<Tool
|
811
808
|
Name="VCLibrarianTool"
|
812
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
809
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
813
810
|
OutputFile="$(OutDir)/rubylib.lib"
|
814
811
|
/>
|
815
812
|
<Tool
|
@@ -837,7 +834,7 @@
|
|
837
834
|
/>
|
838
835
|
</Configuration>
|
839
836
|
<Configuration
|
840
|
-
Name="
|
837
|
+
Name="EmulatorDebug|Win32"
|
841
838
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
842
839
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
843
840
|
ConfigurationType="4"
|
@@ -860,14 +857,14 @@
|
|
860
857
|
/>
|
861
858
|
<Tool
|
862
859
|
Name="VCCLCompilerTool"
|
863
|
-
ExecutionBucket="7"
|
864
860
|
Optimization="0"
|
865
|
-
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\
|
866
|
-
PreprocessorDefinitions="_DEBUG;
|
861
|
+
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared"
|
862
|
+
PreprocessorDefinitions="RHODES_EMULATOR;_DEBUG;DEBUG;WIN32;_WINDOWS;_LIB;BUFSIZ=512;TLS_OUT_OF_INDEXES=0xFFFFFFFF;FILENAME_MAX=MAX_PATH;STATIC_LINKED"
|
867
863
|
MinimalRebuild="true"
|
868
864
|
RuntimeLibrary="1"
|
865
|
+
TreatWChar_tAsBuiltInType="false"
|
869
866
|
UsePrecompiledHeader="0"
|
870
|
-
WarningLevel="
|
867
|
+
WarningLevel="0"
|
871
868
|
DebugInformationFormat="3"
|
872
869
|
/>
|
873
870
|
<Tool
|
@@ -884,7 +881,73 @@
|
|
884
881
|
/>
|
885
882
|
<Tool
|
886
883
|
Name="VCLibrarianTool"
|
887
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
884
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
885
|
+
OutputFile="$(OutDir)/rubylib.lib"
|
886
|
+
/>
|
887
|
+
<Tool
|
888
|
+
Name="VCALinkTool"
|
889
|
+
/>
|
890
|
+
<Tool
|
891
|
+
Name="VCXDCMakeTool"
|
892
|
+
/>
|
893
|
+
<Tool
|
894
|
+
Name="VCBscMakeTool"
|
895
|
+
/>
|
896
|
+
<Tool
|
897
|
+
Name="VCFxCopTool"
|
898
|
+
/>
|
899
|
+
<Tool
|
900
|
+
Name="VCPostBuildEventTool"
|
901
|
+
/>
|
902
|
+
</Configuration>
|
903
|
+
<Configuration
|
904
|
+
Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
|
905
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
906
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
907
|
+
ConfigurationType="4"
|
908
|
+
CharacterSet="1"
|
909
|
+
>
|
910
|
+
<Tool
|
911
|
+
Name="VCPreBuildEventTool"
|
912
|
+
/>
|
913
|
+
<Tool
|
914
|
+
Name="VCCustomBuildTool"
|
915
|
+
/>
|
916
|
+
<Tool
|
917
|
+
Name="VCXMLDataGeneratorTool"
|
918
|
+
/>
|
919
|
+
<Tool
|
920
|
+
Name="VCWebServiceProxyGeneratorTool"
|
921
|
+
/>
|
922
|
+
<Tool
|
923
|
+
Name="VCMIDLTool"
|
924
|
+
TargetEnvironment="1"
|
925
|
+
/>
|
926
|
+
<Tool
|
927
|
+
Name="VCCLCompilerTool"
|
928
|
+
ExecutionBucket="7"
|
929
|
+
Optimization="2"
|
930
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
931
|
+
RuntimeLibrary="0"
|
932
|
+
UsePrecompiledHeader="0"
|
933
|
+
WarningLevel="3"
|
934
|
+
DebugInformationFormat="3"
|
935
|
+
/>
|
936
|
+
<Tool
|
937
|
+
Name="VCManagedResourceCompilerTool"
|
938
|
+
/>
|
939
|
+
<Tool
|
940
|
+
Name="VCResourceCompilerTool"
|
941
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
942
|
+
Culture="1033"
|
943
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
944
|
+
/>
|
945
|
+
<Tool
|
946
|
+
Name="VCPreLinkEventTool"
|
947
|
+
/>
|
948
|
+
<Tool
|
949
|
+
Name="VCLibrarianTool"
|
950
|
+
AdditionalOptions=" /subsystem:windowsce,4.20 /machine:ARM"
|
888
951
|
OutputFile="$(OutDir)/rubylib.lib"
|
889
952
|
/>
|
890
953
|
<Tool
|
@@ -912,7 +975,7 @@
|
|
912
975
|
/>
|
913
976
|
</Configuration>
|
914
977
|
<Configuration
|
915
|
-
Name="
|
978
|
+
Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
|
916
979
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
917
980
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
918
981
|
ConfigurationType="4"
|
@@ -932,17 +995,16 @@
|
|
932
995
|
/>
|
933
996
|
<Tool
|
934
997
|
Name="VCMIDLTool"
|
998
|
+
TargetEnvironment="1"
|
935
999
|
/>
|
936
1000
|
<Tool
|
937
1001
|
Name="VCCLCompilerTool"
|
938
1002
|
ExecutionBucket="7"
|
939
|
-
Optimization="
|
940
|
-
|
941
|
-
|
942
|
-
MinimalRebuild="true"
|
943
|
-
RuntimeLibrary="1"
|
1003
|
+
Optimization="2"
|
1004
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
1005
|
+
RuntimeLibrary="0"
|
944
1006
|
UsePrecompiledHeader="0"
|
945
|
-
WarningLevel="
|
1007
|
+
WarningLevel="3"
|
946
1008
|
DebugInformationFormat="3"
|
947
1009
|
/>
|
948
1010
|
<Tool
|
@@ -950,7 +1012,7 @@
|
|
950
1012
|
/>
|
951
1013
|
<Tool
|
952
1014
|
Name="VCResourceCompilerTool"
|
953
|
-
PreprocessorDefinitions="
|
1015
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
954
1016
|
Culture="1033"
|
955
1017
|
AdditionalIncludeDirectories="$(IntDir)"
|
956
1018
|
/>
|
@@ -959,7 +1021,7 @@
|
|
959
1021
|
/>
|
960
1022
|
<Tool
|
961
1023
|
Name="VCLibrarianTool"
|
962
|
-
AdditionalOptions=" /subsystem:windowsce,
|
1024
|
+
AdditionalOptions=" /subsystem:windowsce,4.20 /machine:ARM"
|
963
1025
|
OutputFile="$(OutDir)/rubylib.lib"
|
964
1026
|
/>
|
965
1027
|
<Tool
|
@@ -987,7 +1049,7 @@
|
|
987
1049
|
/>
|
988
1050
|
</Configuration>
|
989
1051
|
<Configuration
|
990
|
-
Name="
|
1052
|
+
Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
|
991
1053
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
992
1054
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
993
1055
|
ConfigurationType="4"
|
@@ -1007,16 +1069,17 @@
|
|
1007
1069
|
/>
|
1008
1070
|
<Tool
|
1009
1071
|
Name="VCMIDLTool"
|
1072
|
+
TargetEnvironment="1"
|
1010
1073
|
/>
|
1011
1074
|
<Tool
|
1012
1075
|
Name="VCCLCompilerTool"
|
1013
1076
|
ExecutionBucket="7"
|
1014
1077
|
Optimization="2"
|
1015
1078
|
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby;..\..\shared"
|
1016
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);
|
1079
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);BUFSIZ=512;TLS_OUT_OF_INDEXES=0xFFFFFFFF;FILENAME_MAX=MAX_PATH;STATIC_LINKED"
|
1017
1080
|
RuntimeLibrary="0"
|
1018
1081
|
UsePrecompiledHeader="0"
|
1019
|
-
WarningLevel="
|
1082
|
+
WarningLevel="0"
|
1020
1083
|
DebugInformationFormat="3"
|
1021
1084
|
/>
|
1022
1085
|
<Tool
|
@@ -1033,7 +1096,7 @@
|
|
1033
1096
|
/>
|
1034
1097
|
<Tool
|
1035
1098
|
Name="VCLibrarianTool"
|
1036
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
1099
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
1037
1100
|
OutputFile="$(OutDir)/rubylib.lib"
|
1038
1101
|
/>
|
1039
1102
|
<Tool
|
@@ -1061,7 +1124,7 @@
|
|
1061
1124
|
/>
|
1062
1125
|
</Configuration>
|
1063
1126
|
<Configuration
|
1064
|
-
Name="
|
1127
|
+
Name="EmulatorRelease|Win32"
|
1065
1128
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1066
1129
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1067
1130
|
ConfigurationType="4"
|
@@ -1084,11 +1147,11 @@
|
|
1084
1147
|
/>
|
1085
1148
|
<Tool
|
1086
1149
|
Name="VCCLCompilerTool"
|
1087
|
-
ExecutionBucket="7"
|
1088
1150
|
Optimization="2"
|
1089
|
-
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\
|
1090
|
-
PreprocessorDefinitions="NDEBUG;
|
1151
|
+
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared"
|
1152
|
+
PreprocessorDefinitions="RHODES_EMULATOR;_NDEBUG;NDEBUG;WIN32;_WINDOWS;_LIB;BUFSIZ=512;TLS_OUT_OF_INDEXES=0xFFFFFFFF;FILENAME_MAX=MAX_PATH;STATIC_LINKED"
|
1091
1153
|
RuntimeLibrary="0"
|
1154
|
+
TreatWChar_tAsBuiltInType="false"
|
1092
1155
|
UsePrecompiledHeader="0"
|
1093
1156
|
WarningLevel="0"
|
1094
1157
|
DebugInformationFormat="3"
|
@@ -1105,6 +1168,73 @@
|
|
1105
1168
|
<Tool
|
1106
1169
|
Name="VCPreLinkEventTool"
|
1107
1170
|
/>
|
1171
|
+
<Tool
|
1172
|
+
Name="VCLibrarianTool"
|
1173
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
1174
|
+
OutputFile="$(OutDir)/rubylib.lib"
|
1175
|
+
/>
|
1176
|
+
<Tool
|
1177
|
+
Name="VCALinkTool"
|
1178
|
+
/>
|
1179
|
+
<Tool
|
1180
|
+
Name="VCXDCMakeTool"
|
1181
|
+
/>
|
1182
|
+
<Tool
|
1183
|
+
Name="VCBscMakeTool"
|
1184
|
+
/>
|
1185
|
+
<Tool
|
1186
|
+
Name="VCFxCopTool"
|
1187
|
+
/>
|
1188
|
+
<Tool
|
1189
|
+
Name="VCPostBuildEventTool"
|
1190
|
+
/>
|
1191
|
+
</Configuration>
|
1192
|
+
<Configuration
|
1193
|
+
Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
1194
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1195
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1196
|
+
ConfigurationType="4"
|
1197
|
+
CharacterSet="2"
|
1198
|
+
>
|
1199
|
+
<Tool
|
1200
|
+
Name="VCPreBuildEventTool"
|
1201
|
+
/>
|
1202
|
+
<Tool
|
1203
|
+
Name="VCCustomBuildTool"
|
1204
|
+
/>
|
1205
|
+
<Tool
|
1206
|
+
Name="VCXMLDataGeneratorTool"
|
1207
|
+
/>
|
1208
|
+
<Tool
|
1209
|
+
Name="VCWebServiceProxyGeneratorTool"
|
1210
|
+
/>
|
1211
|
+
<Tool
|
1212
|
+
Name="VCMIDLTool"
|
1213
|
+
/>
|
1214
|
+
<Tool
|
1215
|
+
Name="VCCLCompilerTool"
|
1216
|
+
ExecutionBucket="7"
|
1217
|
+
Optimization="0"
|
1218
|
+
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby;..\..\shared"
|
1219
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
1220
|
+
MinimalRebuild="true"
|
1221
|
+
RuntimeLibrary="1"
|
1222
|
+
UsePrecompiledHeader="0"
|
1223
|
+
WarningLevel="3"
|
1224
|
+
DebugInformationFormat="3"
|
1225
|
+
/>
|
1226
|
+
<Tool
|
1227
|
+
Name="VCManagedResourceCompilerTool"
|
1228
|
+
/>
|
1229
|
+
<Tool
|
1230
|
+
Name="VCResourceCompilerTool"
|
1231
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1232
|
+
Culture="1033"
|
1233
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
1234
|
+
/>
|
1235
|
+
<Tool
|
1236
|
+
Name="VCPreLinkEventTool"
|
1237
|
+
/>
|
1108
1238
|
<Tool
|
1109
1239
|
Name="VCLibrarianTool"
|
1110
1240
|
AdditionalOptions=" /subsystem:windowsce,5.01"
|
@@ -1135,11 +1265,11 @@
|
|
1135
1265
|
/>
|
1136
1266
|
</Configuration>
|
1137
1267
|
<Configuration
|
1138
|
-
Name="
|
1268
|
+
Name="Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
1139
1269
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1140
1270
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1141
1271
|
ConfigurationType="4"
|
1142
|
-
CharacterSet="
|
1272
|
+
CharacterSet="2"
|
1143
1273
|
>
|
1144
1274
|
<Tool
|
1145
1275
|
Name="VCPreBuildEventTool"
|
@@ -1159,12 +1289,13 @@
|
|
1159
1289
|
<Tool
|
1160
1290
|
Name="VCCLCompilerTool"
|
1161
1291
|
ExecutionBucket="7"
|
1162
|
-
Optimization="
|
1163
|
-
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby
|
1164
|
-
PreprocessorDefinitions="
|
1165
|
-
|
1292
|
+
Optimization="0"
|
1293
|
+
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby;..\..\shared"
|
1294
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
1295
|
+
MinimalRebuild="true"
|
1296
|
+
RuntimeLibrary="1"
|
1166
1297
|
UsePrecompiledHeader="0"
|
1167
|
-
WarningLevel="
|
1298
|
+
WarningLevel="3"
|
1168
1299
|
DebugInformationFormat="3"
|
1169
1300
|
/>
|
1170
1301
|
<Tool
|
@@ -1172,7 +1303,7 @@
|
|
1172
1303
|
/>
|
1173
1304
|
<Tool
|
1174
1305
|
Name="VCResourceCompilerTool"
|
1175
|
-
PreprocessorDefinitions="
|
1306
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1176
1307
|
Culture="1033"
|
1177
1308
|
AdditionalIncludeDirectories="$(IntDir)"
|
1178
1309
|
/>
|
@@ -1181,7 +1312,7 @@
|
|
1181
1312
|
/>
|
1182
1313
|
<Tool
|
1183
1314
|
Name="VCLibrarianTool"
|
1184
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
1315
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
1185
1316
|
OutputFile="$(OutDir)/rubylib.lib"
|
1186
1317
|
/>
|
1187
1318
|
<Tool
|
@@ -1208,26 +1339,323 @@
|
|
1208
1339
|
<DebuggerTool
|
1209
1340
|
/>
|
1210
1341
|
</Configuration>
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
1218
|
-
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
1342
|
+
<Configuration
|
1343
|
+
Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)"
|
1344
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1345
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1346
|
+
ConfigurationType="4"
|
1347
|
+
CharacterSet="1"
|
1219
1348
|
>
|
1220
|
-
<
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1349
|
+
<Tool
|
1350
|
+
Name="VCPreBuildEventTool"
|
1351
|
+
/>
|
1352
|
+
<Tool
|
1353
|
+
Name="VCCustomBuildTool"
|
1354
|
+
/>
|
1355
|
+
<Tool
|
1356
|
+
Name="VCXMLDataGeneratorTool"
|
1357
|
+
/>
|
1358
|
+
<Tool
|
1359
|
+
Name="VCWebServiceProxyGeneratorTool"
|
1360
|
+
/>
|
1361
|
+
<Tool
|
1362
|
+
Name="VCMIDLTool"
|
1363
|
+
/>
|
1364
|
+
<Tool
|
1365
|
+
Name="VCCLCompilerTool"
|
1366
|
+
ExecutionBucket="7"
|
1367
|
+
Optimization="0"
|
1368
|
+
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby;..\sqlite3;..\..\shared"
|
1369
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE;BUFSIZ=512;TLS_OUT_OF_INDEXES=0xFFFFFFFF;FILENAME_MAX=MAX_PATH;STATIC_LINKED"
|
1370
|
+
MinimalRebuild="true"
|
1371
|
+
RuntimeLibrary="1"
|
1372
|
+
UsePrecompiledHeader="0"
|
1373
|
+
WarningLevel="0"
|
1374
|
+
DebugInformationFormat="3"
|
1375
|
+
/>
|
1376
|
+
<Tool
|
1377
|
+
Name="VCManagedResourceCompilerTool"
|
1378
|
+
/>
|
1379
|
+
<Tool
|
1380
|
+
Name="VCResourceCompilerTool"
|
1381
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1382
|
+
Culture="1033"
|
1383
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
1384
|
+
/>
|
1385
|
+
<Tool
|
1386
|
+
Name="VCPreLinkEventTool"
|
1387
|
+
/>
|
1388
|
+
<Tool
|
1389
|
+
Name="VCLibrarianTool"
|
1390
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
1391
|
+
OutputFile="$(OutDir)/rubylib.lib"
|
1392
|
+
/>
|
1393
|
+
<Tool
|
1394
|
+
Name="VCALinkTool"
|
1395
|
+
/>
|
1396
|
+
<Tool
|
1397
|
+
Name="VCXDCMakeTool"
|
1398
|
+
/>
|
1399
|
+
<Tool
|
1400
|
+
Name="VCBscMakeTool"
|
1401
|
+
/>
|
1402
|
+
<Tool
|
1403
|
+
Name="VCCodeSignTool"
|
1404
|
+
/>
|
1405
|
+
<Tool
|
1406
|
+
Name="VCPostBuildEventTool"
|
1407
|
+
/>
|
1408
|
+
<DeploymentTool
|
1409
|
+
ForceDirty="-1"
|
1410
|
+
RemoteDirectory=""
|
1411
|
+
RegisterOutput="0"
|
1412
|
+
AdditionalFiles=""
|
1413
|
+
/>
|
1414
|
+
<DebuggerTool
|
1415
|
+
/>
|
1416
|
+
</Configuration>
|
1417
|
+
<Configuration
|
1418
|
+
Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
1419
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1420
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1421
|
+
ConfigurationType="4"
|
1422
|
+
CharacterSet="2"
|
1423
|
+
>
|
1424
|
+
<Tool
|
1425
|
+
Name="VCPreBuildEventTool"
|
1426
|
+
/>
|
1427
|
+
<Tool
|
1428
|
+
Name="VCCustomBuildTool"
|
1429
|
+
/>
|
1430
|
+
<Tool
|
1431
|
+
Name="VCXMLDataGeneratorTool"
|
1432
|
+
/>
|
1433
|
+
<Tool
|
1434
|
+
Name="VCWebServiceProxyGeneratorTool"
|
1435
|
+
/>
|
1436
|
+
<Tool
|
1437
|
+
Name="VCMIDLTool"
|
1438
|
+
/>
|
1439
|
+
<Tool
|
1440
|
+
Name="VCCLCompilerTool"
|
1441
|
+
ExecutionBucket="7"
|
1442
|
+
Optimization="2"
|
1443
|
+
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby;..\..\shared"
|
1444
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
1445
|
+
RuntimeLibrary="0"
|
1446
|
+
UsePrecompiledHeader="0"
|
1447
|
+
WarningLevel="3"
|
1448
|
+
DebugInformationFormat="3"
|
1449
|
+
/>
|
1450
|
+
<Tool
|
1451
|
+
Name="VCManagedResourceCompilerTool"
|
1452
|
+
/>
|
1453
|
+
<Tool
|
1454
|
+
Name="VCResourceCompilerTool"
|
1455
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1456
|
+
Culture="1033"
|
1457
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
1458
|
+
/>
|
1459
|
+
<Tool
|
1460
|
+
Name="VCPreLinkEventTool"
|
1461
|
+
/>
|
1462
|
+
<Tool
|
1463
|
+
Name="VCLibrarianTool"
|
1464
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
1465
|
+
OutputFile="$(OutDir)/rubylib.lib"
|
1466
|
+
/>
|
1467
|
+
<Tool
|
1468
|
+
Name="VCALinkTool"
|
1469
|
+
/>
|
1470
|
+
<Tool
|
1471
|
+
Name="VCXDCMakeTool"
|
1472
|
+
/>
|
1473
|
+
<Tool
|
1474
|
+
Name="VCBscMakeTool"
|
1475
|
+
/>
|
1476
|
+
<Tool
|
1477
|
+
Name="VCCodeSignTool"
|
1478
|
+
/>
|
1479
|
+
<Tool
|
1480
|
+
Name="VCPostBuildEventTool"
|
1481
|
+
/>
|
1482
|
+
<DeploymentTool
|
1483
|
+
ForceDirty="-1"
|
1484
|
+
RemoteDirectory=""
|
1485
|
+
RegisterOutput="0"
|
1486
|
+
AdditionalFiles=""
|
1487
|
+
/>
|
1488
|
+
<DebuggerTool
|
1489
|
+
/>
|
1490
|
+
</Configuration>
|
1491
|
+
<Configuration
|
1492
|
+
Name="Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
1493
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1494
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1495
|
+
ConfigurationType="4"
|
1496
|
+
CharacterSet="2"
|
1497
|
+
>
|
1498
|
+
<Tool
|
1499
|
+
Name="VCPreBuildEventTool"
|
1500
|
+
/>
|
1501
|
+
<Tool
|
1502
|
+
Name="VCCustomBuildTool"
|
1503
|
+
/>
|
1504
|
+
<Tool
|
1505
|
+
Name="VCXMLDataGeneratorTool"
|
1506
|
+
/>
|
1507
|
+
<Tool
|
1508
|
+
Name="VCWebServiceProxyGeneratorTool"
|
1509
|
+
/>
|
1510
|
+
<Tool
|
1511
|
+
Name="VCMIDLTool"
|
1512
|
+
/>
|
1513
|
+
<Tool
|
1514
|
+
Name="VCCLCompilerTool"
|
1515
|
+
ExecutionBucket="7"
|
1516
|
+
Optimization="2"
|
1517
|
+
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby;..\..\shared"
|
1518
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
1519
|
+
RuntimeLibrary="0"
|
1520
|
+
UsePrecompiledHeader="0"
|
1521
|
+
WarningLevel="0"
|
1522
|
+
DebugInformationFormat="3"
|
1523
|
+
/>
|
1524
|
+
<Tool
|
1525
|
+
Name="VCManagedResourceCompilerTool"
|
1526
|
+
/>
|
1527
|
+
<Tool
|
1528
|
+
Name="VCResourceCompilerTool"
|
1529
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1530
|
+
Culture="1033"
|
1531
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
1532
|
+
/>
|
1533
|
+
<Tool
|
1534
|
+
Name="VCPreLinkEventTool"
|
1535
|
+
/>
|
1536
|
+
<Tool
|
1537
|
+
Name="VCLibrarianTool"
|
1538
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
1539
|
+
OutputFile="$(OutDir)/rubylib.lib"
|
1540
|
+
/>
|
1541
|
+
<Tool
|
1542
|
+
Name="VCALinkTool"
|
1543
|
+
/>
|
1544
|
+
<Tool
|
1545
|
+
Name="VCXDCMakeTool"
|
1546
|
+
/>
|
1547
|
+
<Tool
|
1548
|
+
Name="VCBscMakeTool"
|
1549
|
+
/>
|
1550
|
+
<Tool
|
1551
|
+
Name="VCCodeSignTool"
|
1552
|
+
/>
|
1553
|
+
<Tool
|
1554
|
+
Name="VCPostBuildEventTool"
|
1555
|
+
/>
|
1556
|
+
<DeploymentTool
|
1557
|
+
ForceDirty="-1"
|
1558
|
+
RemoteDirectory=""
|
1559
|
+
RegisterOutput="0"
|
1560
|
+
AdditionalFiles=""
|
1561
|
+
/>
|
1562
|
+
<DebuggerTool
|
1563
|
+
/>
|
1564
|
+
</Configuration>
|
1565
|
+
<Configuration
|
1566
|
+
Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)"
|
1567
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1568
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1569
|
+
ConfigurationType="4"
|
1570
|
+
CharacterSet="1"
|
1571
|
+
>
|
1572
|
+
<Tool
|
1573
|
+
Name="VCPreBuildEventTool"
|
1574
|
+
/>
|
1575
|
+
<Tool
|
1576
|
+
Name="VCCustomBuildTool"
|
1577
|
+
/>
|
1578
|
+
<Tool
|
1579
|
+
Name="VCXMLDataGeneratorTool"
|
1580
|
+
/>
|
1581
|
+
<Tool
|
1582
|
+
Name="VCWebServiceProxyGeneratorTool"
|
1583
|
+
/>
|
1584
|
+
<Tool
|
1585
|
+
Name="VCMIDLTool"
|
1586
|
+
/>
|
1587
|
+
<Tool
|
1588
|
+
Name="VCCLCompilerTool"
|
1589
|
+
ExecutionBucket="7"
|
1590
|
+
Optimization="2"
|
1591
|
+
AdditionalIncludeDirectories="..\..\shared\ruby\.;..\..\shared\ruby\include;..\..\shared\ruby\wince;..\..\shared\ruby\wince\sys;..\..\shared\ruby\win32;..\..\shared\ruby\generated;..\..\shared\ruby\rhoruby;..\sqlite3;..\..\shared"
|
1592
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE;BUFSIZ=512;TLS_OUT_OF_INDEXES=0xFFFFFFFF;FILENAME_MAX=MAX_PATH;STATIC_LINKED"
|
1593
|
+
RuntimeLibrary="0"
|
1594
|
+
UsePrecompiledHeader="0"
|
1595
|
+
WarningLevel="0"
|
1596
|
+
DebugInformationFormat="3"
|
1597
|
+
/>
|
1598
|
+
<Tool
|
1599
|
+
Name="VCManagedResourceCompilerTool"
|
1600
|
+
/>
|
1601
|
+
<Tool
|
1602
|
+
Name="VCResourceCompilerTool"
|
1603
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1604
|
+
Culture="1033"
|
1605
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
1606
|
+
/>
|
1607
|
+
<Tool
|
1608
|
+
Name="VCPreLinkEventTool"
|
1609
|
+
/>
|
1610
|
+
<Tool
|
1611
|
+
Name="VCLibrarianTool"
|
1612
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
1613
|
+
OutputFile="$(OutDir)/rubylib.lib"
|
1614
|
+
/>
|
1615
|
+
<Tool
|
1616
|
+
Name="VCALinkTool"
|
1617
|
+
/>
|
1618
|
+
<Tool
|
1619
|
+
Name="VCXDCMakeTool"
|
1620
|
+
/>
|
1621
|
+
<Tool
|
1622
|
+
Name="VCBscMakeTool"
|
1623
|
+
/>
|
1624
|
+
<Tool
|
1625
|
+
Name="VCCodeSignTool"
|
1626
|
+
/>
|
1627
|
+
<Tool
|
1628
|
+
Name="VCPostBuildEventTool"
|
1629
|
+
/>
|
1630
|
+
<DeploymentTool
|
1631
|
+
ForceDirty="-1"
|
1632
|
+
RemoteDirectory=""
|
1633
|
+
RegisterOutput="0"
|
1634
|
+
AdditionalFiles=""
|
1635
|
+
/>
|
1636
|
+
<DebuggerTool
|
1637
|
+
/>
|
1638
|
+
</Configuration>
|
1639
|
+
</Configurations>
|
1640
|
+
<References>
|
1641
|
+
</References>
|
1642
|
+
<Files>
|
1643
|
+
<Filter
|
1644
|
+
Name="Source Files"
|
1645
|
+
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
1646
|
+
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
1647
|
+
>
|
1648
|
+
<File
|
1649
|
+
RelativePath="..\..\shared\ruby\array.c"
|
1650
|
+
>
|
1651
|
+
</File>
|
1652
|
+
<File
|
1653
|
+
RelativePath="..\..\shared\ruby\bignum.c"
|
1654
|
+
>
|
1655
|
+
</File>
|
1656
|
+
<File
|
1657
|
+
RelativePath="..\..\shared\ruby\blockinlining.c"
|
1658
|
+
>
|
1231
1659
|
</File>
|
1232
1660
|
<File
|
1233
1661
|
RelativePath="..\..\shared\ruby\class.c"
|
@@ -1505,7 +1933,7 @@
|
|
1505
1933
|
/>
|
1506
1934
|
</FileConfiguration>
|
1507
1935
|
<FileConfiguration
|
1508
|
-
Name="
|
1936
|
+
Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
|
1509
1937
|
>
|
1510
1938
|
<Tool
|
1511
1939
|
Name="VCCLCompilerTool"
|
@@ -1513,7 +1941,55 @@
|
|
1513
1941
|
/>
|
1514
1942
|
</FileConfiguration>
|
1515
1943
|
<FileConfiguration
|
1516
|
-
Name="
|
1944
|
+
Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
|
1945
|
+
>
|
1946
|
+
<Tool
|
1947
|
+
Name="VCCLCompilerTool"
|
1948
|
+
ObjectFile="$(IntDir)/$(InputName)1.obj"
|
1949
|
+
/>
|
1950
|
+
</FileConfiguration>
|
1951
|
+
<FileConfiguration
|
1952
|
+
Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
1953
|
+
>
|
1954
|
+
<Tool
|
1955
|
+
Name="VCCLCompilerTool"
|
1956
|
+
ObjectFile="$(IntDir)/$(InputName)1.obj"
|
1957
|
+
/>
|
1958
|
+
</FileConfiguration>
|
1959
|
+
<FileConfiguration
|
1960
|
+
Name="EmulatorDebug|Win32"
|
1961
|
+
>
|
1962
|
+
<Tool
|
1963
|
+
Name="VCCLCompilerTool"
|
1964
|
+
ObjectFile="$(IntDir)/$(InputName)1.obj"
|
1965
|
+
/>
|
1966
|
+
</FileConfiguration>
|
1967
|
+
<FileConfiguration
|
1968
|
+
Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
|
1969
|
+
>
|
1970
|
+
<Tool
|
1971
|
+
Name="VCCLCompilerTool"
|
1972
|
+
ObjectFile="$(IntDir)/$(InputName)1.obj"
|
1973
|
+
/>
|
1974
|
+
</FileConfiguration>
|
1975
|
+
<FileConfiguration
|
1976
|
+
Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
|
1977
|
+
>
|
1978
|
+
<Tool
|
1979
|
+
Name="VCCLCompilerTool"
|
1980
|
+
ObjectFile="$(IntDir)/$(InputName)1.obj"
|
1981
|
+
/>
|
1982
|
+
</FileConfiguration>
|
1983
|
+
<FileConfiguration
|
1984
|
+
Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
|
1985
|
+
>
|
1986
|
+
<Tool
|
1987
|
+
Name="VCCLCompilerTool"
|
1988
|
+
ObjectFile="$(IntDir)/$(InputName)1.obj"
|
1989
|
+
/>
|
1990
|
+
</FileConfiguration>
|
1991
|
+
<FileConfiguration
|
1992
|
+
Name="EmulatorRelease|Win32"
|
1517
1993
|
>
|
1518
1994
|
<Tool
|
1519
1995
|
Name="VCCLCompilerTool"
|
@@ -1917,54 +2393,430 @@
|
|
1917
2393
|
>
|
1918
2394
|
</File>
|
1919
2395
|
<File
|
1920
|
-
RelativePath="..\..\shared\ruby\missing\strlcat.c"
|
2396
|
+
RelativePath="..\..\shared\ruby\missing\strlcat.c"
|
2397
|
+
>
|
2398
|
+
</File>
|
2399
|
+
<File
|
2400
|
+
RelativePath="..\..\shared\ruby\missing\strlcpy.c"
|
2401
|
+
>
|
2402
|
+
</File>
|
2403
|
+
<File
|
2404
|
+
RelativePath="..\..\shared\ruby\missing\tgamma.c"
|
2405
|
+
>
|
2406
|
+
</File>
|
2407
|
+
</Filter>
|
2408
|
+
<Filter
|
2409
|
+
Name="win32"
|
2410
|
+
>
|
2411
|
+
<File
|
2412
|
+
RelativePath="..\..\shared\ruby\win32\dir.h"
|
2413
|
+
>
|
2414
|
+
</File>
|
2415
|
+
<File
|
2416
|
+
RelativePath="..\..\shared\ruby\win32\miniprelude.c"
|
2417
|
+
>
|
2418
|
+
</File>
|
2419
|
+
<File
|
2420
|
+
RelativePath="..\..\shared\ruby\win32\newline.c"
|
2421
|
+
>
|
2422
|
+
</File>
|
2423
|
+
<File
|
2424
|
+
RelativePath="..\..\shared\ruby\win32\win32.c"
|
2425
|
+
>
|
2426
|
+
</File>
|
2427
|
+
<Filter
|
2428
|
+
Name="ruby"
|
2429
|
+
>
|
2430
|
+
<File
|
2431
|
+
RelativePath="..\..\shared\ruby\win32\ruby\config.h"
|
2432
|
+
>
|
2433
|
+
</File>
|
2434
|
+
</Filter>
|
2435
|
+
</Filter>
|
2436
|
+
<Filter
|
2437
|
+
Name="wince"
|
2438
|
+
>
|
2439
|
+
<File
|
2440
|
+
RelativePath="..\..\shared\ruby\wince\assert.c"
|
2441
|
+
>
|
2442
|
+
<FileConfiguration
|
2443
|
+
Name="Debug|Win32"
|
2444
|
+
ExcludedFromBuild="true"
|
2445
|
+
>
|
2446
|
+
<Tool
|
2447
|
+
Name="VCCLCompilerTool"
|
2448
|
+
/>
|
2449
|
+
</FileConfiguration>
|
2450
|
+
<FileConfiguration
|
2451
|
+
Name="Release|Win32"
|
2452
|
+
ExcludedFromBuild="true"
|
2453
|
+
>
|
2454
|
+
<Tool
|
2455
|
+
Name="VCCLCompilerTool"
|
2456
|
+
/>
|
2457
|
+
</FileConfiguration>
|
2458
|
+
<FileConfiguration
|
2459
|
+
Name="EmulatorDebug|Win32"
|
2460
|
+
ExcludedFromBuild="true"
|
2461
|
+
>
|
2462
|
+
<Tool
|
2463
|
+
Name="VCCLCompilerTool"
|
2464
|
+
/>
|
2465
|
+
</FileConfiguration>
|
2466
|
+
<FileConfiguration
|
2467
|
+
Name="EmulatorRelease|Win32"
|
2468
|
+
ExcludedFromBuild="true"
|
2469
|
+
>
|
2470
|
+
<Tool
|
2471
|
+
Name="VCCLCompilerTool"
|
2472
|
+
/>
|
2473
|
+
</FileConfiguration>
|
2474
|
+
</File>
|
2475
|
+
<File
|
2476
|
+
RelativePath="..\..\shared\ruby\wince\assert.h"
|
2477
|
+
>
|
2478
|
+
<FileConfiguration
|
2479
|
+
Name="Debug|Win32"
|
2480
|
+
ExcludedFromBuild="true"
|
2481
|
+
>
|
2482
|
+
<Tool
|
2483
|
+
Name="VCCustomBuildTool"
|
2484
|
+
/>
|
2485
|
+
</FileConfiguration>
|
2486
|
+
<FileConfiguration
|
2487
|
+
Name="Release|Win32"
|
2488
|
+
ExcludedFromBuild="true"
|
2489
|
+
>
|
2490
|
+
<Tool
|
2491
|
+
Name="VCCustomBuildTool"
|
2492
|
+
/>
|
2493
|
+
</FileConfiguration>
|
2494
|
+
<FileConfiguration
|
2495
|
+
Name="EmulatorDebug|Win32"
|
2496
|
+
ExcludedFromBuild="true"
|
2497
|
+
>
|
2498
|
+
<Tool
|
2499
|
+
Name="VCCustomBuildTool"
|
2500
|
+
/>
|
2501
|
+
</FileConfiguration>
|
2502
|
+
<FileConfiguration
|
2503
|
+
Name="EmulatorRelease|Win32"
|
2504
|
+
ExcludedFromBuild="true"
|
2505
|
+
>
|
2506
|
+
<Tool
|
2507
|
+
Name="VCCustomBuildTool"
|
2508
|
+
/>
|
2509
|
+
</FileConfiguration>
|
2510
|
+
</File>
|
2511
|
+
<File
|
2512
|
+
RelativePath="..\..\shared\ruby\wince\direct.c"
|
2513
|
+
>
|
2514
|
+
<FileConfiguration
|
2515
|
+
Name="Debug|Win32"
|
2516
|
+
ExcludedFromBuild="true"
|
2517
|
+
>
|
2518
|
+
<Tool
|
2519
|
+
Name="VCCLCompilerTool"
|
2520
|
+
/>
|
2521
|
+
</FileConfiguration>
|
2522
|
+
<FileConfiguration
|
2523
|
+
Name="Release|Win32"
|
2524
|
+
ExcludedFromBuild="true"
|
2525
|
+
>
|
2526
|
+
<Tool
|
2527
|
+
Name="VCCLCompilerTool"
|
2528
|
+
/>
|
2529
|
+
</FileConfiguration>
|
2530
|
+
<FileConfiguration
|
2531
|
+
Name="EmulatorDebug|Win32"
|
2532
|
+
ExcludedFromBuild="true"
|
2533
|
+
>
|
2534
|
+
<Tool
|
2535
|
+
Name="VCCLCompilerTool"
|
2536
|
+
/>
|
2537
|
+
</FileConfiguration>
|
2538
|
+
<FileConfiguration
|
2539
|
+
Name="EmulatorRelease|Win32"
|
2540
|
+
ExcludedFromBuild="true"
|
2541
|
+
>
|
2542
|
+
<Tool
|
2543
|
+
Name="VCCLCompilerTool"
|
2544
|
+
/>
|
2545
|
+
</FileConfiguration>
|
2546
|
+
</File>
|
2547
|
+
<File
|
2548
|
+
RelativePath="..\..\shared\ruby\wince\direct.h"
|
1921
2549
|
>
|
2550
|
+
<FileConfiguration
|
2551
|
+
Name="Debug|Win32"
|
2552
|
+
ExcludedFromBuild="true"
|
2553
|
+
>
|
2554
|
+
<Tool
|
2555
|
+
Name="VCCustomBuildTool"
|
2556
|
+
/>
|
2557
|
+
</FileConfiguration>
|
2558
|
+
<FileConfiguration
|
2559
|
+
Name="Release|Win32"
|
2560
|
+
ExcludedFromBuild="true"
|
2561
|
+
>
|
2562
|
+
<Tool
|
2563
|
+
Name="VCCustomBuildTool"
|
2564
|
+
/>
|
2565
|
+
</FileConfiguration>
|
2566
|
+
<FileConfiguration
|
2567
|
+
Name="EmulatorDebug|Win32"
|
2568
|
+
ExcludedFromBuild="true"
|
2569
|
+
>
|
2570
|
+
<Tool
|
2571
|
+
Name="VCCustomBuildTool"
|
2572
|
+
/>
|
2573
|
+
</FileConfiguration>
|
2574
|
+
<FileConfiguration
|
2575
|
+
Name="EmulatorRelease|Win32"
|
2576
|
+
ExcludedFromBuild="true"
|
2577
|
+
>
|
2578
|
+
<Tool
|
2579
|
+
Name="VCCustomBuildTool"
|
2580
|
+
/>
|
2581
|
+
</FileConfiguration>
|
1922
2582
|
</File>
|
1923
2583
|
<File
|
1924
|
-
RelativePath="..\..\shared\ruby\
|
2584
|
+
RelativePath="..\..\shared\ruby\wince\errno.c"
|
1925
2585
|
>
|
2586
|
+
<FileConfiguration
|
2587
|
+
Name="Debug|Win32"
|
2588
|
+
ExcludedFromBuild="true"
|
2589
|
+
>
|
2590
|
+
<Tool
|
2591
|
+
Name="VCCLCompilerTool"
|
2592
|
+
/>
|
2593
|
+
</FileConfiguration>
|
2594
|
+
<FileConfiguration
|
2595
|
+
Name="Release|Win32"
|
2596
|
+
ExcludedFromBuild="true"
|
2597
|
+
>
|
2598
|
+
<Tool
|
2599
|
+
Name="VCCLCompilerTool"
|
2600
|
+
/>
|
2601
|
+
</FileConfiguration>
|
2602
|
+
<FileConfiguration
|
2603
|
+
Name="EmulatorDebug|Win32"
|
2604
|
+
ExcludedFromBuild="true"
|
2605
|
+
>
|
2606
|
+
<Tool
|
2607
|
+
Name="VCCLCompilerTool"
|
2608
|
+
/>
|
2609
|
+
</FileConfiguration>
|
2610
|
+
<FileConfiguration
|
2611
|
+
Name="EmulatorRelease|Win32"
|
2612
|
+
ExcludedFromBuild="true"
|
2613
|
+
>
|
2614
|
+
<Tool
|
2615
|
+
Name="VCCLCompilerTool"
|
2616
|
+
/>
|
2617
|
+
</FileConfiguration>
|
1926
2618
|
</File>
|
1927
2619
|
<File
|
1928
|
-
RelativePath="..\..\shared\ruby\
|
2620
|
+
RelativePath="..\..\shared\ruby\wince\errno.h"
|
1929
2621
|
>
|
2622
|
+
<FileConfiguration
|
2623
|
+
Name="Debug|Win32"
|
2624
|
+
ExcludedFromBuild="true"
|
2625
|
+
>
|
2626
|
+
<Tool
|
2627
|
+
Name="VCCustomBuildTool"
|
2628
|
+
/>
|
2629
|
+
</FileConfiguration>
|
2630
|
+
<FileConfiguration
|
2631
|
+
Name="Release|Win32"
|
2632
|
+
ExcludedFromBuild="true"
|
2633
|
+
>
|
2634
|
+
<Tool
|
2635
|
+
Name="VCCustomBuildTool"
|
2636
|
+
/>
|
2637
|
+
</FileConfiguration>
|
2638
|
+
<FileConfiguration
|
2639
|
+
Name="EmulatorDebug|Win32"
|
2640
|
+
ExcludedFromBuild="true"
|
2641
|
+
>
|
2642
|
+
<Tool
|
2643
|
+
Name="VCCustomBuildTool"
|
2644
|
+
/>
|
2645
|
+
</FileConfiguration>
|
2646
|
+
<FileConfiguration
|
2647
|
+
Name="EmulatorRelease|Win32"
|
2648
|
+
ExcludedFromBuild="true"
|
2649
|
+
>
|
2650
|
+
<Tool
|
2651
|
+
Name="VCCustomBuildTool"
|
2652
|
+
/>
|
2653
|
+
</FileConfiguration>
|
1930
2654
|
</File>
|
1931
|
-
</Filter>
|
1932
|
-
<Filter
|
1933
|
-
Name="win32"
|
1934
|
-
>
|
1935
2655
|
<File
|
1936
|
-
RelativePath="..\..\shared\ruby\
|
2656
|
+
RelativePath="..\..\shared\ruby\wince\fcntl.h"
|
1937
2657
|
>
|
2658
|
+
<FileConfiguration
|
2659
|
+
Name="Debug|Win32"
|
2660
|
+
ExcludedFromBuild="true"
|
2661
|
+
>
|
2662
|
+
<Tool
|
2663
|
+
Name="VCCustomBuildTool"
|
2664
|
+
/>
|
2665
|
+
</FileConfiguration>
|
2666
|
+
<FileConfiguration
|
2667
|
+
Name="Release|Win32"
|
2668
|
+
ExcludedFromBuild="true"
|
2669
|
+
>
|
2670
|
+
<Tool
|
2671
|
+
Name="VCCustomBuildTool"
|
2672
|
+
/>
|
2673
|
+
</FileConfiguration>
|
2674
|
+
<FileConfiguration
|
2675
|
+
Name="EmulatorDebug|Win32"
|
2676
|
+
ExcludedFromBuild="true"
|
2677
|
+
>
|
2678
|
+
<Tool
|
2679
|
+
Name="VCCustomBuildTool"
|
2680
|
+
/>
|
2681
|
+
</FileConfiguration>
|
2682
|
+
<FileConfiguration
|
2683
|
+
Name="EmulatorRelease|Win32"
|
2684
|
+
ExcludedFromBuild="true"
|
2685
|
+
>
|
2686
|
+
<Tool
|
2687
|
+
Name="VCCustomBuildTool"
|
2688
|
+
/>
|
2689
|
+
</FileConfiguration>
|
1938
2690
|
</File>
|
1939
2691
|
<File
|
1940
|
-
RelativePath="..\..\shared\ruby\
|
2692
|
+
RelativePath="..\..\shared\ruby\wince\io.h"
|
1941
2693
|
>
|
2694
|
+
<FileConfiguration
|
2695
|
+
Name="Debug|Win32"
|
2696
|
+
ExcludedFromBuild="true"
|
2697
|
+
>
|
2698
|
+
<Tool
|
2699
|
+
Name="VCCustomBuildTool"
|
2700
|
+
/>
|
2701
|
+
</FileConfiguration>
|
2702
|
+
<FileConfiguration
|
2703
|
+
Name="Release|Win32"
|
2704
|
+
ExcludedFromBuild="true"
|
2705
|
+
>
|
2706
|
+
<Tool
|
2707
|
+
Name="VCCustomBuildTool"
|
2708
|
+
/>
|
2709
|
+
</FileConfiguration>
|
2710
|
+
<FileConfiguration
|
2711
|
+
Name="EmulatorDebug|Win32"
|
2712
|
+
ExcludedFromBuild="true"
|
2713
|
+
>
|
2714
|
+
<Tool
|
2715
|
+
Name="VCCustomBuildTool"
|
2716
|
+
/>
|
2717
|
+
</FileConfiguration>
|
2718
|
+
<FileConfiguration
|
2719
|
+
Name="EmulatorRelease|Win32"
|
2720
|
+
ExcludedFromBuild="true"
|
2721
|
+
>
|
2722
|
+
<Tool
|
2723
|
+
Name="VCCustomBuildTool"
|
2724
|
+
/>
|
2725
|
+
</FileConfiguration>
|
1942
2726
|
</File>
|
1943
2727
|
<File
|
1944
|
-
RelativePath="..\..\shared\ruby\
|
2728
|
+
RelativePath="..\..\shared\ruby\wince\io_wce.c"
|
1945
2729
|
>
|
2730
|
+
<FileConfiguration
|
2731
|
+
Name="Debug|Win32"
|
2732
|
+
ExcludedFromBuild="true"
|
2733
|
+
>
|
2734
|
+
<Tool
|
2735
|
+
Name="VCCLCompilerTool"
|
2736
|
+
/>
|
2737
|
+
</FileConfiguration>
|
2738
|
+
<FileConfiguration
|
2739
|
+
Name="Release|Win32"
|
2740
|
+
ExcludedFromBuild="true"
|
2741
|
+
>
|
2742
|
+
<Tool
|
2743
|
+
Name="VCCLCompilerTool"
|
2744
|
+
/>
|
2745
|
+
</FileConfiguration>
|
2746
|
+
<FileConfiguration
|
2747
|
+
Name="EmulatorDebug|Win32"
|
2748
|
+
ExcludedFromBuild="true"
|
2749
|
+
>
|
2750
|
+
<Tool
|
2751
|
+
Name="VCCLCompilerTool"
|
2752
|
+
/>
|
2753
|
+
</FileConfiguration>
|
2754
|
+
<FileConfiguration
|
2755
|
+
Name="EmulatorRelease|Win32"
|
2756
|
+
ExcludedFromBuild="true"
|
2757
|
+
>
|
2758
|
+
<Tool
|
2759
|
+
Name="VCCLCompilerTool"
|
2760
|
+
/>
|
2761
|
+
</FileConfiguration>
|
1946
2762
|
</File>
|
1947
2763
|
<File
|
1948
|
-
RelativePath="..\..\shared\ruby\
|
1949
|
-
>
|
1950
|
-
</File>
|
1951
|
-
<Filter
|
1952
|
-
Name="ruby"
|
2764
|
+
RelativePath="..\..\shared\ruby\wince\process.h"
|
1953
2765
|
>
|
1954
|
-
<
|
1955
|
-
|
2766
|
+
<FileConfiguration
|
2767
|
+
Name="Debug|Win32"
|
2768
|
+
ExcludedFromBuild="true"
|
1956
2769
|
>
|
1957
|
-
|
1958
|
-
|
1959
|
-
|
1960
|
-
|
1961
|
-
|
1962
|
-
|
2770
|
+
<Tool
|
2771
|
+
Name="VCCustomBuildTool"
|
2772
|
+
/>
|
2773
|
+
</FileConfiguration>
|
2774
|
+
<FileConfiguration
|
2775
|
+
Name="Release|Win32"
|
2776
|
+
ExcludedFromBuild="true"
|
2777
|
+
>
|
2778
|
+
<Tool
|
2779
|
+
Name="VCCustomBuildTool"
|
2780
|
+
/>
|
2781
|
+
</FileConfiguration>
|
2782
|
+
<FileConfiguration
|
2783
|
+
Name="EmulatorDebug|Win32"
|
2784
|
+
ExcludedFromBuild="true"
|
2785
|
+
>
|
2786
|
+
<Tool
|
2787
|
+
Name="VCCustomBuildTool"
|
2788
|
+
/>
|
2789
|
+
</FileConfiguration>
|
2790
|
+
<FileConfiguration
|
2791
|
+
Name="EmulatorRelease|Win32"
|
2792
|
+
ExcludedFromBuild="true"
|
2793
|
+
>
|
2794
|
+
<Tool
|
2795
|
+
Name="VCCustomBuildTool"
|
2796
|
+
/>
|
2797
|
+
</FileConfiguration>
|
2798
|
+
</File>
|
1963
2799
|
<File
|
1964
|
-
RelativePath="..\..\shared\ruby\wince\
|
2800
|
+
RelativePath="..\..\shared\ruby\wince\process_wce.c"
|
1965
2801
|
>
|
1966
2802
|
<FileConfiguration
|
1967
|
-
Name="Debug|Win32"
|
2803
|
+
Name="Debug|Win32"
|
2804
|
+
ExcludedFromBuild="true"
|
2805
|
+
>
|
2806
|
+
<Tool
|
2807
|
+
Name="VCCLCompilerTool"
|
2808
|
+
/>
|
2809
|
+
</FileConfiguration>
|
2810
|
+
<FileConfiguration
|
2811
|
+
Name="Release|Win32"
|
2812
|
+
ExcludedFromBuild="true"
|
2813
|
+
>
|
2814
|
+
<Tool
|
2815
|
+
Name="VCCLCompilerTool"
|
2816
|
+
/>
|
2817
|
+
</FileConfiguration>
|
2818
|
+
<FileConfiguration
|
2819
|
+
Name="EmulatorDebug|Win32"
|
1968
2820
|
ExcludedFromBuild="true"
|
1969
2821
|
>
|
1970
2822
|
<Tool
|
@@ -1972,7 +2824,7 @@
|
|
1972
2824
|
/>
|
1973
2825
|
</FileConfiguration>
|
1974
2826
|
<FileConfiguration
|
1975
|
-
Name="
|
2827
|
+
Name="EmulatorRelease|Win32"
|
1976
2828
|
ExcludedFromBuild="true"
|
1977
2829
|
>
|
1978
2830
|
<Tool
|
@@ -1981,7 +2833,7 @@
|
|
1981
2833
|
</FileConfiguration>
|
1982
2834
|
</File>
|
1983
2835
|
<File
|
1984
|
-
RelativePath="..\..\shared\ruby\wince\
|
2836
|
+
RelativePath="..\..\shared\ruby\wince\signal.h"
|
1985
2837
|
>
|
1986
2838
|
<FileConfiguration
|
1987
2839
|
Name="Debug|Win32"
|
@@ -1999,36 +2851,32 @@
|
|
1999
2851
|
Name="VCCustomBuildTool"
|
2000
2852
|
/>
|
2001
2853
|
</FileConfiguration>
|
2002
|
-
</File>
|
2003
|
-
<File
|
2004
|
-
RelativePath="..\..\shared\ruby\wince\direct.c"
|
2005
|
-
>
|
2006
2854
|
<FileConfiguration
|
2007
|
-
Name="
|
2855
|
+
Name="EmulatorDebug|Win32"
|
2008
2856
|
ExcludedFromBuild="true"
|
2009
2857
|
>
|
2010
2858
|
<Tool
|
2011
|
-
Name="
|
2859
|
+
Name="VCCustomBuildTool"
|
2012
2860
|
/>
|
2013
2861
|
</FileConfiguration>
|
2014
2862
|
<FileConfiguration
|
2015
|
-
Name="
|
2863
|
+
Name="EmulatorRelease|Win32"
|
2016
2864
|
ExcludedFromBuild="true"
|
2017
2865
|
>
|
2018
2866
|
<Tool
|
2019
|
-
Name="
|
2867
|
+
Name="VCCustomBuildTool"
|
2020
2868
|
/>
|
2021
2869
|
</FileConfiguration>
|
2022
2870
|
</File>
|
2023
2871
|
<File
|
2024
|
-
RelativePath="..\..\shared\ruby\wince\
|
2872
|
+
RelativePath="..\..\shared\ruby\wince\signal_wce.c"
|
2025
2873
|
>
|
2026
2874
|
<FileConfiguration
|
2027
2875
|
Name="Debug|Win32"
|
2028
2876
|
ExcludedFromBuild="true"
|
2029
2877
|
>
|
2030
2878
|
<Tool
|
2031
|
-
Name="
|
2879
|
+
Name="VCCLCompilerTool"
|
2032
2880
|
/>
|
2033
2881
|
</FileConfiguration>
|
2034
2882
|
<FileConfiguration
|
@@ -2036,15 +2884,11 @@
|
|
2036
2884
|
ExcludedFromBuild="true"
|
2037
2885
|
>
|
2038
2886
|
<Tool
|
2039
|
-
Name="
|
2887
|
+
Name="VCCLCompilerTool"
|
2040
2888
|
/>
|
2041
2889
|
</FileConfiguration>
|
2042
|
-
</File>
|
2043
|
-
<File
|
2044
|
-
RelativePath="..\..\shared\ruby\wince\errno.c"
|
2045
|
-
>
|
2046
2890
|
<FileConfiguration
|
2047
|
-
Name="
|
2891
|
+
Name="EmulatorDebug|Win32"
|
2048
2892
|
ExcludedFromBuild="true"
|
2049
2893
|
>
|
2050
2894
|
<Tool
|
@@ -2052,7 +2896,7 @@
|
|
2052
2896
|
/>
|
2053
2897
|
</FileConfiguration>
|
2054
2898
|
<FileConfiguration
|
2055
|
-
Name="
|
2899
|
+
Name="EmulatorRelease|Win32"
|
2056
2900
|
ExcludedFromBuild="true"
|
2057
2901
|
>
|
2058
2902
|
<Tool
|
@@ -2061,7 +2905,7 @@
|
|
2061
2905
|
</FileConfiguration>
|
2062
2906
|
</File>
|
2063
2907
|
<File
|
2064
|
-
RelativePath="..\..\shared\ruby\wince\
|
2908
|
+
RelativePath="..\..\shared\ruby\wince\stddef.h"
|
2065
2909
|
>
|
2066
2910
|
<FileConfiguration
|
2067
2911
|
Name="Debug|Win32"
|
@@ -2079,12 +2923,8 @@
|
|
2079
2923
|
Name="VCCustomBuildTool"
|
2080
2924
|
/>
|
2081
2925
|
</FileConfiguration>
|
2082
|
-
</File>
|
2083
|
-
<File
|
2084
|
-
RelativePath="..\..\shared\ruby\wince\fcntl.h"
|
2085
|
-
>
|
2086
2926
|
<FileConfiguration
|
2087
|
-
Name="
|
2927
|
+
Name="EmulatorDebug|Win32"
|
2088
2928
|
ExcludedFromBuild="true"
|
2089
2929
|
>
|
2090
2930
|
<Tool
|
@@ -2092,7 +2932,7 @@
|
|
2092
2932
|
/>
|
2093
2933
|
</FileConfiguration>
|
2094
2934
|
<FileConfiguration
|
2095
|
-
Name="
|
2935
|
+
Name="EmulatorRelease|Win32"
|
2096
2936
|
ExcludedFromBuild="true"
|
2097
2937
|
>
|
2098
2938
|
<Tool
|
@@ -2101,14 +2941,14 @@
|
|
2101
2941
|
</FileConfiguration>
|
2102
2942
|
</File>
|
2103
2943
|
<File
|
2104
|
-
RelativePath="..\..\shared\ruby\wince\
|
2944
|
+
RelativePath="..\..\shared\ruby\wince\stdio.c"
|
2105
2945
|
>
|
2106
2946
|
<FileConfiguration
|
2107
2947
|
Name="Debug|Win32"
|
2108
2948
|
ExcludedFromBuild="true"
|
2109
2949
|
>
|
2110
2950
|
<Tool
|
2111
|
-
Name="
|
2951
|
+
Name="VCCLCompilerTool"
|
2112
2952
|
/>
|
2113
2953
|
</FileConfiguration>
|
2114
2954
|
<FileConfiguration
|
@@ -2116,15 +2956,11 @@
|
|
2116
2956
|
ExcludedFromBuild="true"
|
2117
2957
|
>
|
2118
2958
|
<Tool
|
2119
|
-
Name="
|
2959
|
+
Name="VCCLCompilerTool"
|
2120
2960
|
/>
|
2121
2961
|
</FileConfiguration>
|
2122
|
-
</File>
|
2123
|
-
<File
|
2124
|
-
RelativePath="..\..\shared\ruby\wince\io_wce.c"
|
2125
|
-
>
|
2126
2962
|
<FileConfiguration
|
2127
|
-
Name="
|
2963
|
+
Name="EmulatorDebug|Win32"
|
2128
2964
|
ExcludedFromBuild="true"
|
2129
2965
|
>
|
2130
2966
|
<Tool
|
@@ -2132,7 +2968,7 @@
|
|
2132
2968
|
/>
|
2133
2969
|
</FileConfiguration>
|
2134
2970
|
<FileConfiguration
|
2135
|
-
Name="
|
2971
|
+
Name="EmulatorRelease|Win32"
|
2136
2972
|
ExcludedFromBuild="true"
|
2137
2973
|
>
|
2138
2974
|
<Tool
|
@@ -2141,14 +2977,14 @@
|
|
2141
2977
|
</FileConfiguration>
|
2142
2978
|
</File>
|
2143
2979
|
<File
|
2144
|
-
RelativePath="..\..\shared\ruby\wince\
|
2980
|
+
RelativePath="..\..\shared\ruby\wince\stdlib.c"
|
2145
2981
|
>
|
2146
2982
|
<FileConfiguration
|
2147
2983
|
Name="Debug|Win32"
|
2148
2984
|
ExcludedFromBuild="true"
|
2149
2985
|
>
|
2150
2986
|
<Tool
|
2151
|
-
Name="
|
2987
|
+
Name="VCCLCompilerTool"
|
2152
2988
|
/>
|
2153
2989
|
</FileConfiguration>
|
2154
2990
|
<FileConfiguration
|
@@ -2156,15 +2992,11 @@
|
|
2156
2992
|
ExcludedFromBuild="true"
|
2157
2993
|
>
|
2158
2994
|
<Tool
|
2159
|
-
Name="
|
2995
|
+
Name="VCCLCompilerTool"
|
2160
2996
|
/>
|
2161
2997
|
</FileConfiguration>
|
2162
|
-
</File>
|
2163
|
-
<File
|
2164
|
-
RelativePath="..\..\shared\ruby\wince\process_wce.c"
|
2165
|
-
>
|
2166
2998
|
<FileConfiguration
|
2167
|
-
Name="
|
2999
|
+
Name="EmulatorDebug|Win32"
|
2168
3000
|
ExcludedFromBuild="true"
|
2169
3001
|
>
|
2170
3002
|
<Tool
|
@@ -2172,7 +3004,7 @@
|
|
2172
3004
|
/>
|
2173
3005
|
</FileConfiguration>
|
2174
3006
|
<FileConfiguration
|
2175
|
-
Name="
|
3007
|
+
Name="EmulatorRelease|Win32"
|
2176
3008
|
ExcludedFromBuild="true"
|
2177
3009
|
>
|
2178
3010
|
<Tool
|
@@ -2181,14 +3013,14 @@
|
|
2181
3013
|
</FileConfiguration>
|
2182
3014
|
</File>
|
2183
3015
|
<File
|
2184
|
-
RelativePath="..\..\shared\ruby\wince\
|
3016
|
+
RelativePath="..\..\shared\ruby\wince\string_wce.c"
|
2185
3017
|
>
|
2186
3018
|
<FileConfiguration
|
2187
3019
|
Name="Debug|Win32"
|
2188
3020
|
ExcludedFromBuild="true"
|
2189
3021
|
>
|
2190
3022
|
<Tool
|
2191
|
-
Name="
|
3023
|
+
Name="VCCLCompilerTool"
|
2192
3024
|
/>
|
2193
3025
|
</FileConfiguration>
|
2194
3026
|
<FileConfiguration
|
@@ -2196,15 +3028,11 @@
|
|
2196
3028
|
ExcludedFromBuild="true"
|
2197
3029
|
>
|
2198
3030
|
<Tool
|
2199
|
-
Name="
|
3031
|
+
Name="VCCLCompilerTool"
|
2200
3032
|
/>
|
2201
3033
|
</FileConfiguration>
|
2202
|
-
</File>
|
2203
|
-
<File
|
2204
|
-
RelativePath="..\..\shared\ruby\wince\signal_wce.c"
|
2205
|
-
>
|
2206
3034
|
<FileConfiguration
|
2207
|
-
Name="
|
3035
|
+
Name="EmulatorDebug|Win32"
|
2208
3036
|
ExcludedFromBuild="true"
|
2209
3037
|
>
|
2210
3038
|
<Tool
|
@@ -2212,7 +3040,7 @@
|
|
2212
3040
|
/>
|
2213
3041
|
</FileConfiguration>
|
2214
3042
|
<FileConfiguration
|
2215
|
-
Name="
|
3043
|
+
Name="EmulatorRelease|Win32"
|
2216
3044
|
ExcludedFromBuild="true"
|
2217
3045
|
>
|
2218
3046
|
<Tool
|
@@ -2221,7 +3049,7 @@
|
|
2221
3049
|
</FileConfiguration>
|
2222
3050
|
</File>
|
2223
3051
|
<File
|
2224
|
-
RelativePath="..\..\shared\ruby\wince\
|
3052
|
+
RelativePath="..\..\shared\ruby\wince\time.h"
|
2225
3053
|
>
|
2226
3054
|
<FileConfiguration
|
2227
3055
|
Name="Debug|Win32"
|
@@ -2239,29 +3067,25 @@
|
|
2239
3067
|
Name="VCCustomBuildTool"
|
2240
3068
|
/>
|
2241
3069
|
</FileConfiguration>
|
2242
|
-
</File>
|
2243
|
-
<File
|
2244
|
-
RelativePath="..\..\shared\ruby\wince\stdio.c"
|
2245
|
-
>
|
2246
3070
|
<FileConfiguration
|
2247
|
-
Name="
|
3071
|
+
Name="EmulatorDebug|Win32"
|
2248
3072
|
ExcludedFromBuild="true"
|
2249
3073
|
>
|
2250
3074
|
<Tool
|
2251
|
-
Name="
|
3075
|
+
Name="VCCustomBuildTool"
|
2252
3076
|
/>
|
2253
3077
|
</FileConfiguration>
|
2254
3078
|
<FileConfiguration
|
2255
|
-
Name="
|
3079
|
+
Name="EmulatorRelease|Win32"
|
2256
3080
|
ExcludedFromBuild="true"
|
2257
3081
|
>
|
2258
3082
|
<Tool
|
2259
|
-
Name="
|
3083
|
+
Name="VCCustomBuildTool"
|
2260
3084
|
/>
|
2261
3085
|
</FileConfiguration>
|
2262
3086
|
</File>
|
2263
3087
|
<File
|
2264
|
-
RelativePath="..\..\shared\ruby\wince\
|
3088
|
+
RelativePath="..\..\shared\ruby\wince\time_wce.c"
|
2265
3089
|
>
|
2266
3090
|
<FileConfiguration
|
2267
3091
|
Name="Debug|Win32"
|
@@ -2279,12 +3103,8 @@
|
|
2279
3103
|
Name="VCCLCompilerTool"
|
2280
3104
|
/>
|
2281
3105
|
</FileConfiguration>
|
2282
|
-
</File>
|
2283
|
-
<File
|
2284
|
-
RelativePath="..\..\shared\ruby\wince\string_wce.c"
|
2285
|
-
>
|
2286
3106
|
<FileConfiguration
|
2287
|
-
Name="
|
3107
|
+
Name="EmulatorDebug|Win32"
|
2288
3108
|
ExcludedFromBuild="true"
|
2289
3109
|
>
|
2290
3110
|
<Tool
|
@@ -2292,7 +3112,7 @@
|
|
2292
3112
|
/>
|
2293
3113
|
</FileConfiguration>
|
2294
3114
|
<FileConfiguration
|
2295
|
-
Name="
|
3115
|
+
Name="EmulatorRelease|Win32"
|
2296
3116
|
ExcludedFromBuild="true"
|
2297
3117
|
>
|
2298
3118
|
<Tool
|
@@ -2301,7 +3121,7 @@
|
|
2301
3121
|
</FileConfiguration>
|
2302
3122
|
</File>
|
2303
3123
|
<File
|
2304
|
-
RelativePath="..\..\shared\ruby\wince\
|
3124
|
+
RelativePath="..\..\shared\ruby\wince\varargs.h"
|
2305
3125
|
>
|
2306
3126
|
<FileConfiguration
|
2307
3127
|
Name="Debug|Win32"
|
@@ -2319,36 +3139,32 @@
|
|
2319
3139
|
Name="VCCustomBuildTool"
|
2320
3140
|
/>
|
2321
3141
|
</FileConfiguration>
|
2322
|
-
</File>
|
2323
|
-
<File
|
2324
|
-
RelativePath="..\..\shared\ruby\wince\time_wce.c"
|
2325
|
-
>
|
2326
3142
|
<FileConfiguration
|
2327
|
-
Name="
|
3143
|
+
Name="EmulatorDebug|Win32"
|
2328
3144
|
ExcludedFromBuild="true"
|
2329
3145
|
>
|
2330
3146
|
<Tool
|
2331
|
-
Name="
|
3147
|
+
Name="VCCustomBuildTool"
|
2332
3148
|
/>
|
2333
3149
|
</FileConfiguration>
|
2334
3150
|
<FileConfiguration
|
2335
|
-
Name="
|
3151
|
+
Name="EmulatorRelease|Win32"
|
2336
3152
|
ExcludedFromBuild="true"
|
2337
3153
|
>
|
2338
3154
|
<Tool
|
2339
|
-
Name="
|
3155
|
+
Name="VCCustomBuildTool"
|
2340
3156
|
/>
|
2341
3157
|
</FileConfiguration>
|
2342
3158
|
</File>
|
2343
3159
|
<File
|
2344
|
-
RelativePath="..\..\shared\ruby\wince\
|
3160
|
+
RelativePath="..\..\shared\ruby\wince\wince.c"
|
2345
3161
|
>
|
2346
3162
|
<FileConfiguration
|
2347
3163
|
Name="Debug|Win32"
|
2348
3164
|
ExcludedFromBuild="true"
|
2349
3165
|
>
|
2350
3166
|
<Tool
|
2351
|
-
Name="
|
3167
|
+
Name="VCCLCompilerTool"
|
2352
3168
|
/>
|
2353
3169
|
</FileConfiguration>
|
2354
3170
|
<FileConfiguration
|
@@ -2356,15 +3172,11 @@
|
|
2356
3172
|
ExcludedFromBuild="true"
|
2357
3173
|
>
|
2358
3174
|
<Tool
|
2359
|
-
Name="
|
3175
|
+
Name="VCCLCompilerTool"
|
2360
3176
|
/>
|
2361
3177
|
</FileConfiguration>
|
2362
|
-
</File>
|
2363
|
-
<File
|
2364
|
-
RelativePath="..\..\shared\ruby\wince\wince.c"
|
2365
|
-
>
|
2366
3178
|
<FileConfiguration
|
2367
|
-
Name="
|
3179
|
+
Name="EmulatorDebug|Win32"
|
2368
3180
|
ExcludedFromBuild="true"
|
2369
3181
|
>
|
2370
3182
|
<Tool
|
@@ -2372,7 +3184,7 @@
|
|
2372
3184
|
/>
|
2373
3185
|
</FileConfiguration>
|
2374
3186
|
<FileConfiguration
|
2375
|
-
Name="
|
3187
|
+
Name="EmulatorRelease|Win32"
|
2376
3188
|
ExcludedFromBuild="true"
|
2377
3189
|
>
|
2378
3190
|
<Tool
|
@@ -2399,6 +3211,22 @@
|
|
2399
3211
|
Name="VCCustomBuildTool"
|
2400
3212
|
/>
|
2401
3213
|
</FileConfiguration>
|
3214
|
+
<FileConfiguration
|
3215
|
+
Name="EmulatorDebug|Win32"
|
3216
|
+
ExcludedFromBuild="true"
|
3217
|
+
>
|
3218
|
+
<Tool
|
3219
|
+
Name="VCCustomBuildTool"
|
3220
|
+
/>
|
3221
|
+
</FileConfiguration>
|
3222
|
+
<FileConfiguration
|
3223
|
+
Name="EmulatorRelease|Win32"
|
3224
|
+
ExcludedFromBuild="true"
|
3225
|
+
>
|
3226
|
+
<Tool
|
3227
|
+
Name="VCCustomBuildTool"
|
3228
|
+
/>
|
3229
|
+
</FileConfiguration>
|
2402
3230
|
</File>
|
2403
3231
|
<File
|
2404
3232
|
RelativePath="..\..\shared\ruby\wince\wincemain.c"
|
@@ -2419,6 +3247,22 @@
|
|
2419
3247
|
Name="VCCLCompilerTool"
|
2420
3248
|
/>
|
2421
3249
|
</FileConfiguration>
|
3250
|
+
<FileConfiguration
|
3251
|
+
Name="EmulatorDebug|Win32"
|
3252
|
+
ExcludedFromBuild="true"
|
3253
|
+
>
|
3254
|
+
<Tool
|
3255
|
+
Name="VCCLCompilerTool"
|
3256
|
+
/>
|
3257
|
+
</FileConfiguration>
|
3258
|
+
<FileConfiguration
|
3259
|
+
Name="EmulatorRelease|Win32"
|
3260
|
+
ExcludedFromBuild="true"
|
3261
|
+
>
|
3262
|
+
<Tool
|
3263
|
+
Name="VCCLCompilerTool"
|
3264
|
+
/>
|
3265
|
+
</FileConfiguration>
|
2422
3266
|
</File>
|
2423
3267
|
<File
|
2424
3268
|
RelativePath="..\..\shared\ruby\wince\wincon.h"
|
@@ -2439,6 +3283,22 @@
|
|
2439
3283
|
Name="VCCustomBuildTool"
|
2440
3284
|
/>
|
2441
3285
|
</FileConfiguration>
|
3286
|
+
<FileConfiguration
|
3287
|
+
Name="EmulatorDebug|Win32"
|
3288
|
+
ExcludedFromBuild="true"
|
3289
|
+
>
|
3290
|
+
<Tool
|
3291
|
+
Name="VCCustomBuildTool"
|
3292
|
+
/>
|
3293
|
+
</FileConfiguration>
|
3294
|
+
<FileConfiguration
|
3295
|
+
Name="EmulatorRelease|Win32"
|
3296
|
+
ExcludedFromBuild="true"
|
3297
|
+
>
|
3298
|
+
<Tool
|
3299
|
+
Name="VCCustomBuildTool"
|
3300
|
+
/>
|
3301
|
+
</FileConfiguration>
|
2442
3302
|
</File>
|
2443
3303
|
<Filter
|
2444
3304
|
Name="sys"
|
@@ -2462,6 +3322,22 @@
|
|
2462
3322
|
Name="VCCLCompilerTool"
|
2463
3323
|
/>
|
2464
3324
|
</FileConfiguration>
|
3325
|
+
<FileConfiguration
|
3326
|
+
Name="EmulatorDebug|Win32"
|
3327
|
+
ExcludedFromBuild="true"
|
3328
|
+
>
|
3329
|
+
<Tool
|
3330
|
+
Name="VCCLCompilerTool"
|
3331
|
+
/>
|
3332
|
+
</FileConfiguration>
|
3333
|
+
<FileConfiguration
|
3334
|
+
Name="EmulatorRelease|Win32"
|
3335
|
+
ExcludedFromBuild="true"
|
3336
|
+
>
|
3337
|
+
<Tool
|
3338
|
+
Name="VCCLCompilerTool"
|
3339
|
+
/>
|
3340
|
+
</FileConfiguration>
|
2465
3341
|
</File>
|
2466
3342
|
<File
|
2467
3343
|
RelativePath="..\..\shared\ruby\wince\sys\stat.h"
|
@@ -2482,6 +3358,22 @@
|
|
2482
3358
|
Name="VCCustomBuildTool"
|
2483
3359
|
/>
|
2484
3360
|
</FileConfiguration>
|
3361
|
+
<FileConfiguration
|
3362
|
+
Name="EmulatorDebug|Win32"
|
3363
|
+
ExcludedFromBuild="true"
|
3364
|
+
>
|
3365
|
+
<Tool
|
3366
|
+
Name="VCCustomBuildTool"
|
3367
|
+
/>
|
3368
|
+
</FileConfiguration>
|
3369
|
+
<FileConfiguration
|
3370
|
+
Name="EmulatorRelease|Win32"
|
3371
|
+
ExcludedFromBuild="true"
|
3372
|
+
>
|
3373
|
+
<Tool
|
3374
|
+
Name="VCCustomBuildTool"
|
3375
|
+
/>
|
3376
|
+
</FileConfiguration>
|
2485
3377
|
</File>
|
2486
3378
|
<File
|
2487
3379
|
RelativePath="..\..\shared\ruby\wince\sys\timeb.c"
|
@@ -2502,6 +3394,22 @@
|
|
2502
3394
|
Name="VCCLCompilerTool"
|
2503
3395
|
/>
|
2504
3396
|
</FileConfiguration>
|
3397
|
+
<FileConfiguration
|
3398
|
+
Name="EmulatorDebug|Win32"
|
3399
|
+
ExcludedFromBuild="true"
|
3400
|
+
>
|
3401
|
+
<Tool
|
3402
|
+
Name="VCCLCompilerTool"
|
3403
|
+
/>
|
3404
|
+
</FileConfiguration>
|
3405
|
+
<FileConfiguration
|
3406
|
+
Name="EmulatorRelease|Win32"
|
3407
|
+
ExcludedFromBuild="true"
|
3408
|
+
>
|
3409
|
+
<Tool
|
3410
|
+
Name="VCCLCompilerTool"
|
3411
|
+
/>
|
3412
|
+
</FileConfiguration>
|
2505
3413
|
</File>
|
2506
3414
|
<File
|
2507
3415
|
RelativePath="..\..\shared\ruby\wince\sys\timeb.h"
|
@@ -2522,6 +3430,22 @@
|
|
2522
3430
|
Name="VCCustomBuildTool"
|
2523
3431
|
/>
|
2524
3432
|
</FileConfiguration>
|
3433
|
+
<FileConfiguration
|
3434
|
+
Name="EmulatorDebug|Win32"
|
3435
|
+
ExcludedFromBuild="true"
|
3436
|
+
>
|
3437
|
+
<Tool
|
3438
|
+
Name="VCCustomBuildTool"
|
3439
|
+
/>
|
3440
|
+
</FileConfiguration>
|
3441
|
+
<FileConfiguration
|
3442
|
+
Name="EmulatorRelease|Win32"
|
3443
|
+
ExcludedFromBuild="true"
|
3444
|
+
>
|
3445
|
+
<Tool
|
3446
|
+
Name="VCCustomBuildTool"
|
3447
|
+
/>
|
3448
|
+
</FileConfiguration>
|
2525
3449
|
</File>
|
2526
3450
|
<File
|
2527
3451
|
RelativePath="..\..\shared\ruby\wince\sys\types.h"
|
@@ -2542,6 +3466,22 @@
|
|
2542
3466
|
Name="VCCustomBuildTool"
|
2543
3467
|
/>
|
2544
3468
|
</FileConfiguration>
|
3469
|
+
<FileConfiguration
|
3470
|
+
Name="EmulatorDebug|Win32"
|
3471
|
+
ExcludedFromBuild="true"
|
3472
|
+
>
|
3473
|
+
<Tool
|
3474
|
+
Name="VCCustomBuildTool"
|
3475
|
+
/>
|
3476
|
+
</FileConfiguration>
|
3477
|
+
<FileConfiguration
|
3478
|
+
Name="EmulatorRelease|Win32"
|
3479
|
+
ExcludedFromBuild="true"
|
3480
|
+
>
|
3481
|
+
<Tool
|
3482
|
+
Name="VCCustomBuildTool"
|
3483
|
+
/>
|
3484
|
+
</FileConfiguration>
|
2545
3485
|
</File>
|
2546
3486
|
<File
|
2547
3487
|
RelativePath="..\..\shared\ruby\wince\sys\utime.c"
|
@@ -2562,6 +3502,22 @@
|
|
2562
3502
|
Name="VCCLCompilerTool"
|
2563
3503
|
/>
|
2564
3504
|
</FileConfiguration>
|
3505
|
+
<FileConfiguration
|
3506
|
+
Name="EmulatorDebug|Win32"
|
3507
|
+
ExcludedFromBuild="true"
|
3508
|
+
>
|
3509
|
+
<Tool
|
3510
|
+
Name="VCCLCompilerTool"
|
3511
|
+
/>
|
3512
|
+
</FileConfiguration>
|
3513
|
+
<FileConfiguration
|
3514
|
+
Name="EmulatorRelease|Win32"
|
3515
|
+
ExcludedFromBuild="true"
|
3516
|
+
>
|
3517
|
+
<Tool
|
3518
|
+
Name="VCCLCompilerTool"
|
3519
|
+
/>
|
3520
|
+
</FileConfiguration>
|
2565
3521
|
</File>
|
2566
3522
|
<File
|
2567
3523
|
RelativePath="..\..\shared\ruby\wince\sys\utime.h"
|
@@ -2582,6 +3538,22 @@
|
|
2582
3538
|
Name="VCCustomBuildTool"
|
2583
3539
|
/>
|
2584
3540
|
</FileConfiguration>
|
3541
|
+
<FileConfiguration
|
3542
|
+
Name="EmulatorDebug|Win32"
|
3543
|
+
ExcludedFromBuild="true"
|
3544
|
+
>
|
3545
|
+
<Tool
|
3546
|
+
Name="VCCustomBuildTool"
|
3547
|
+
/>
|
3548
|
+
</FileConfiguration>
|
3549
|
+
<FileConfiguration
|
3550
|
+
Name="EmulatorRelease|Win32"
|
3551
|
+
ExcludedFromBuild="true"
|
3552
|
+
>
|
3553
|
+
<Tool
|
3554
|
+
Name="VCCustomBuildTool"
|
3555
|
+
/>
|
3556
|
+
</FileConfiguration>
|
2585
3557
|
</File>
|
2586
3558
|
</Filter>
|
2587
3559
|
</Filter>
|