What are the options for in ActivateRequestToFileEx?

Hi There,

For offline activation, I assume the first parameter in ActivationRequestToFileEx is the path to where we want to save the request file. However, I'm uncertain as to what the options paramteer is meant forof type PACTIVATE_OPTIONS. Can you shed some light on that?

Also, can you provide examples of how to set the options variable? I didn't see any example code in Example.c showing offline activation. This would be useful.

Thanks,Arie

It's just like the IsGenuineEx() function. (The structure use, setting the size, and using the members of the structure).

Look in TurboActivate.h for the structure definition (it's at he top of the file).

ActivationRequestToFileEx() and ActivateEx() both allow you to pass extra data to the activation servers about that particular activation. If you just want regular old activations then use ActivationRequestToFile().

Does that make sense?

Yes, makes sense. Thank you for pointing me to those resources.

Arie