1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 // MARKER(update_precomp.py): autogen include statement, do not remove 29 #include "precompiled_svtools.hxx" 30 31 #include <stdio.h> 32 #include <string.h> 33 #include <stdlib.h> 34 35 #include <tools/string.hxx> 36 #include <osl/module.h> 37 #include <rtl/ustring.hxx> 38 39 using namespace rtl; 40 41 extern "C" { 42 struct VersionInfo 43 { 44 const char* pTime; 45 const char* pDate; 46 const char* pUpd; 47 const char* pMinor; 48 const char* pBuild; 49 const char* pInpath; 50 }; 51 52 typedef VersionInfo*(__LOADONCALLAPI *GetVersionInfo)(void); 53 } 54 55 int __LOADONCALLAPI main( int argc, char **argv ) 56 { 57 VersionInfo *pInfo = NULL; 58 59 if ( argc != 2 ) 60 { 61 fprintf( stderr, "USAGE: %s DllName \n", argv[0] ); 62 exit(0); 63 } 64 OUString aLib = OUString::createFromAscii(argv[1]); 65 oslModule aLibrary = osl_loadModule( aLib.pData, SAL_LOADMODULE_DEFAULT ); 66 if ( aLibrary ) 67 { 68 void* pFunc = osl_getSymbol( aLibrary, OUString::createFromAscii( "GetVersionInfo" ).pData ); 69 if ( pFunc ) 70 pInfo = (*(GetVersionInfo)pFunc)(); 71 } 72 if ( pInfo ) 73 { 74 fprintf( stdout, "Date : %s\n", pInfo->pDate ); 75 fprintf( stdout, "Time : %s\n", pInfo->pTime ); 76 fprintf( stdout, "UPD : %s\n", pInfo->pUpd ); 77 fprintf( stdout, "Minor : %s\n", pInfo->pMinor ); 78 fprintf( stdout, "Build : %s\n", pInfo->pBuild ); 79 fprintf( stdout, "Inpath : %s\n", pInfo->pInpath ); 80 } 81 else 82 fprintf( stderr, "VersionInfo not Found !\n" ); 83 84 if ( aLibrary ) 85 osl_unloadModule( aLibrary ); 86 87 return 0; 88 } 89 90