1
2
3
4
5
6
7
8
9
|
/*
* Copyright (c) 2008-2021 Jonathan Schleifer <js@nil.im>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
|
|
|
1
2
3
4
5
6
7
8
9
|
/*
* Copyright (c) 2008-2022 Jonathan Schleifer <js@nil.im>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
|
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
|
#endif
,
.rt_Version = OBJFW_LIB_MAJOR,
.rt_Type = NT_LIBRARY,
.rt_Pri = 0,
.rt_Name = (char *)OBJFW_AMIGA_LIB,
.rt_IdString = (char *)"ObjFW " VERSION_STRING
" \xA9 2008-2021 Jonathan Schleifer",
.rt_Init = &init_table,
#ifdef OF_MORPHOS
.rt_Revision = OBJFW_LIB_MINOR,
.rt_Tags = NULL,
#endif
};
|
|
|
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
|
#endif
,
.rt_Version = OBJFW_LIB_MAJOR,
.rt_Type = NT_LIBRARY,
.rt_Pri = 0,
.rt_Name = (char *)OBJFW_AMIGA_LIB,
.rt_IdString = (char *)"ObjFW " VERSION_STRING
" \xA9 2008-2022 Jonathan Schleifer",
.rt_Init = &init_table,
#ifdef OF_MORPHOS
.rt_Revision = OBJFW_LIB_MINOR,
.rt_Tags = NULL,
#endif
};
|