Differences From Artifact [5661460aef]:
- File src/OFString+PathAdditions.m — part of check-in [c6930c5141] at 2018-03-11 12:35:32 on branch trunk — OFString+PathAdditions: Split into per-type files (user: js, size: 786) [annotate] [blame] [check-ins using]
To Artifact [f88a76c9e5]:
- File src/OFString+PathAdditions.m — part of check-in [1c499f0728] at 2018-04-15 12:51:13 on branch trunk — Add handling of AmigaOS paths (user: js, size: 856) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
17 18 19 20 21 22 23 24 25 26 | #include "config.h" #import "platform.h" #if defined(OF_WINDOWS) || defined(OF_MSDOS) # import "OFString+PathAdditions_DOS.m" #else # import "OFString+PathAdditions_UNIX.m" #endif | > > | 17 18 19 20 21 22 23 24 25 26 27 28 | #include "config.h" #import "platform.h" #if defined(OF_WINDOWS) || defined(OF_MSDOS) # import "OFString+PathAdditions_DOS.m" #elif defined(OF_AMIGAOS) # import "OFString+PathAdditions_AmigaOS.m" #else # import "OFString+PathAdditions_UNIX.m" #endif |