mirror of
https://github.com/apple/swift.git
synced 2026-01-07 22:52:31 +01:00
Specifically, "Ref", "Ptr", and dimensionality suffixes (1D, 2D, 3D) in the type name should not prevent us from finding redundancy in type information. Swift SVN r31428
51 lines
2.0 KiB
Objective-C
51 lines
2.0 KiB
Objective-C
typedef const void *CFTypeRef __attribute__((objc_bridge(id)));
|
|
CFTypeRef CFBottom();
|
|
|
|
typedef const struct __attribute__((objc_bridge(id))) __CCPowerSupply *CCPowerSupplyRef;
|
|
typedef const struct __attribute__((objc_bridge(id))) __CCItem *CCItemRef;
|
|
|
|
/// The standard power supply.
|
|
extern const CCPowerSupplyRef kCCPowerStandard;
|
|
|
|
typedef const struct __attribute__((objc_bridge(id))) __CCRefrigerator *CCRefrigeratorRef;
|
|
CCRefrigeratorRef CCRefrigeratorCreate(CCPowerSupplyRef power);
|
|
|
|
void CCRefrigeratorOpen(CCRefrigeratorRef fridge);
|
|
CCItemRef CCRefrigeratorGet(CCRefrigeratorRef fridge, unsigned index);
|
|
void CCRefrigeratorClose(CCRefrigeratorRef fridge);
|
|
|
|
typedef struct __CCRefrigerator *CCMutableRefrigeratorRef;
|
|
CCMutableRefrigeratorRef CCRefrigeratorCreateMutable(CCPowerSupplyRef power);
|
|
|
|
void CCRefrigeratorInsert(CCMutableRefrigeratorRef fridge, CCItemRef ref);
|
|
|
|
@interface Kitchen
|
|
@property CCRefrigeratorRef fridge;
|
|
-(void)replacePowerSupply:(CCPowerSupplyRef)powerSupply;
|
|
@end
|
|
|
|
@interface Duct
|
|
@end
|
|
|
|
@interface MutableDuct : Duct
|
|
@end
|
|
|
|
typedef const struct __attribute__((objc_bridge(Duct))) __CCDuct *CCDuctRef;
|
|
typedef struct __attribute__((objc_bridge_mutable(MutableDuct))) __CCDuct *CCMutableDuctRef;
|
|
|
|
typedef CCRefrigeratorRef CCFridgeRef;
|
|
|
|
typedef const void *CCOpaqueTypeRef __attribute__((objc_bridge(id)));
|
|
CCOpaqueTypeRef CCRetain(CCOpaqueTypeRef typeRef);
|
|
void CCRelease(CCOpaqueTypeRef typeRef);
|
|
|
|
// Nullability
|
|
void CCRefrigeratorOpenDoSomething(__nonnull CCRefrigeratorRef fridge);
|
|
void CCRefrigeratorOpenMaybeDoSomething(__nullable CCRefrigeratorRef fridge);
|
|
|
|
// Out parameters
|
|
void CCRefrigeratorCreateIndirect(CCRefrigeratorRef * __nullable __attribute__((cf_returns_retained)) outFridge);
|
|
// Note that the fridge parameter is incorrectly annotated.
|
|
void CCRefrigeratorGetPowerSupplyIndirect(CCRefrigeratorRef __attribute__((cf_returns_not_retained)) fridge, CCPowerSupplyRef * __nonnull __attribute__((cf_returns_not_retained)) outPower);
|
|
void CCRefrigeratorGetItemUnaudited(CCRefrigeratorRef fridge, unsigned index, CCItemRef *outItem);
|