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

Additional int types. #2

Closed
Y-Less opened this issue May 20, 2019 · 2 comments
Closed

Additional int types. #2

Y-Less opened this issue May 20, 2019 · 2 comments

Comments

@Y-Less
Copy link

Y-Less commented May 20, 2019

The default code basically does this:

switch (identifier)
{
case 'a': // array.
case 's': // string.
default: // cell.
}

Which means that while i and d are documented as integers, you can actually use anything. I know both Slice and I have written code that exploits this fact. YSI uses v for reference parameters and x for ... (eXtra). The extra letters make no difference to SetTimerEx, but mean that other code can also use the additional information contained in the string.

Could you support this please? Or at least an extended set of letters, off the top of my head I also know b and l have been used. Thanks.

@bmisiak
Copy link
Owner

bmisiak commented May 20, 2019

Absolutely. I was being conservative in an attempt to make sure users weren’t caught off guard but I have no objections. Will implement it soon.

@Y-Less
Copy link
Author

Y-Less commented May 20, 2019

Great, thanks.

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

2 participants