fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sot / workben / testsot.cxx
blob9e7c14670bfcfdff2bbbb4dcf846ae5d6b97a610
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include <sot/storage.hxx>
24 * main.
26 int main (int argc, sal_Char **argv)
28 tools::SvRef<SotStorage> xStor = new SotStorage( "c:\\temp\\65254.ppt" );
30 tools::SvRef<SotStorage> xStor = new SotStorage( "c:\\temp\\video.sdb" );
31 tools::SvRef<SotStorage> xStor = new SotStorage( "c:\\temp\\video.sdb" );
32 tools::SvRef<SotStorage> x2Stor = xStor->OpenSotStorage( "1117" );
34 tools::SvRef<SotStorageStream> xStm = x2Stor->OpenSotStream( "Genres", STREAM_STD_READWRITE | StreamMode::TRUNC);
35 //BYTE szData[100];
36 //xStm->Write( szData, 100 );
37 UINT32 nSize = xStm->GetSize();
38 xStm->SetSize( 0 );
39 nSize = xStm->GetSize();
40 x2Stor->Commit();
41 xStor->Commit();
43 return 0;
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */