Overview
| Comment: | Conditional imports in ObjFW.h. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a5c1129e8d45b0ab7dc078ac2d64b88c |
| User & Date: | js on 2010-02-05 22:16:45 |
| Other Links: | manifest | tags |
Context
|
2010-02-07
| ||
| 12:40 | Add +[arrayWithCArray:length:] to OFArray. (check-in: bf310bcc5d user: js tags: trunk) | |
|
2010-02-05
| ||
| 22:16 | Conditional imports in ObjFW.h. (check-in: a5c1129e8d user: js tags: trunk) | |
| 14:03 | Rename of_atomic_*32 to of_atomic_*_32 and add of_atomic_cmpswap_ptr. (check-in: 4e1ab53403 user: js tags: trunk) | |
Changes
Modified src/ObjFW.h from [1e4ff89001] to [bd2f16365c].
| ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | + + + + + + + - - - | #import "OFSocket.h" #import "OFTCPSocket.h" #import "OFHashes.h" #import "OFXMLElement.h" #import "macros.h" #ifdef OF_PLUGINS #import "OFPlugin.h" #endif #ifdef OF_ATOMIC_OPS # import "atomic.h" #endif #ifdef OF_THREADS #import "OFThread.h" # import "threading.h" #endif #import "asprintf.h" |