Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RTI Keyed Archiver research #7

Open
thiccaxe opened this issue Mar 4, 2024 · 1 comment
Open

RTI Keyed Archiver research #7

thiccaxe opened this issue Mar 4, 2024 · 1 comment

Comments

@thiccaxe
Copy link
Owner

thiccaxe commented Mar 4, 2024

(9, {'flags': 1417693830, 'auxFlags': 1, '$class': UID(10), 'version': 2}),
(10, {'$classname': 'TITextInputTraits', '$classes': ['TITextInputTraits', 'NSObject']}),

https://developer.limneos.net/?ios=17.1&framework=TextInput.framework&header=TextInput-Structs.h

typedef struct {
	unsigned autocapitalizationType : 2;
	unsigned autocorrectionType : 2;
	unsigned spellCheckingType : 2;
	unsigned keyboardType : 5;
	unsigned keyboardAppearance : 3;
	unsigned returnKeyType : 5;
	unsigned textScriptType : 4;
	unsigned enablesReturnKeyAutomatically : 1;
	unsigned secureTextEntry : 1;
	unsigned disablePrediction : 1;
	unsigned smartInsertDeleteType : 2;
	unsigned smartQuotesType : 2;
	unsigned smartDashesType : 2;
} SCD_Struct_TI28;

typedef union {
	long long integerValue;
	SCD_Struct_TI28 fields;
} SCD_Union_TI29;

flags seems to be 32 bit bitfield.

auxFlags? auxillary would be 2 bit bitfield

typedef struct {
	unsigned inlineCompletionType : 2; 
} SCD_Struct_TI30;

typedef union {
	long long integerValue;
	SCD_Struct_TI30 fields;
} SCD_Union_TI31;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant