android_mt6572_jiabo/external/lldb/test/lang/objc/hidden-ivars/InternalDefiner.h
2025-09-05 16:56:03 +08:00

11 lines
181 B
Objective-C

#import <Foundation/Foundation.h>
#import <stdint.h>
@interface InternalDefiner : NSObject {
@public
uintptr_t foo;
}
-(id)initWithFoo:(uintptr_t)f andBar:(uintptr_t)b;
@end