1. #1
    Deleted

    What's the technology that restricts a loop of functions?

    What's the technology that restricts a loop of functions intended to be clicked [once/by single clicks] by the player only?

    I'm interested out of curiosity from a programming approach. I have some medium experience in programming.

    How does that blockade work?

  2. #2
    Deleted
    These functions are called "protected functions" and may only be called from an untainted execution path (e.g. only from blizzard-signed code which has only received input from other blizzard-signed code). We inherit specific "secure templates" in the CreateFrame call which include a blizzard-signed OnClick handler that takes "frame attributes" set on the frame (which cannot be changed in combat) and calls protected functions based on that.

  3. #3
    Deleted
    Thank you very much for your answer. It seems thorough.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •