pyuno.cxx (67c7d1c1) pyuno.cxx (5c3821d8)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 625 unchanged lines hidden (view full) ---

634 {
635 raisePyExceptionWithAny( makeAny( e ) );
636 }
637 return retDefault;
638}
639
640static PyTypeObject PyUNOType =
641{
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 625 unchanged lines hidden (view full) ---

634 {
635 raisePyExceptionWithAny( makeAny( e ) );
636 }
637 return retDefault;
638}
639
640static PyTypeObject PyUNOType =
641{
642 PyObject_HEAD_INIT (&PyType_Type)
643 0,
642 PyVarObject_HEAD_INIT(&PyType_Type, 0)
644 const_cast< char * >("pyuno"),
645 sizeof (PyUNO),
646 0,
647 (destructor) PyUNO_del,
648 (printfunc) 0,
649 (getattrfunc) PyUNO_getattr,
650 (setattrfunc) PyUNO_setattr,
651 (cmpfunc) PyUNO_cmp,

--- 89 unchanged lines hidden ---
643 const_cast< char * >("pyuno"),
644 sizeof (PyUNO),
645 0,
646 (destructor) PyUNO_del,
647 (printfunc) 0,
648 (getattrfunc) PyUNO_getattr,
649 (setattrfunc) PyUNO_setattr,
650 (cmpfunc) PyUNO_cmp,

--- 89 unchanged lines hidden ---