rpatters1

Results 37 comments of rpatters1

I was not even asking for something so complicated as a manufacturer-specific SendRq. The mere ability to send an arbitrary .syx while in listening mode would resolve the issue. As...

P.S. BTW I also did something similar to elosha before I got the Unisyn converted files. I started both SysEx Librarian and Pure Data (PD). I put SysEx Librarian in...

I have several large classes, many around 100 members, but a couple are around 200 members. I loop using the get_reader/get_writer api. You've helped me out before by speeding it...

Another approach might be to have a way to specify the setter in the macros.

It may make a slight difference, but it isn't a lot. I just had a different idea of something to try: I could sort the member of the largest classes...

On further reflection, maybe a `setter_is_next` attribute on the getter is all I need. Going to try it.

Hmm. Except in the loop: ```c++ for_each(members, [&](auto member) { // I have member. // how do I get the next member from it? }); ```

For context, my Windows machine is severely under-powered. (This is a problem in itself, but since my main dev machine is my Mac, which is lightening-fast, I have been living...

If I understand it correctly, `_tfopen_s` allows `WCHAR` (i.e., utf-16) filenames without the need for explicitly specifying `WCHAR`. However, I don't believe that addresses how/whether to deal with utf-8 encoded...

Would it be possible to add a version of `REFL_FUNC` that takes a function pointer? That seems like the most efficient way to handle overloads. Usage would look something like:...