WoW:API newproxy
Jump to navigation
Jump to search
← WoW Lua
Creates a zero-size "userdata" object, optionally with a sharable empty metatable.
obj = newproxy(boolean or otherproxy)
Arguments[edit]
- (boolean or otherproxy)
- boolean
- Whether to create a metatable for the userdata.
- otherproxy
- If an object previously created by newproxy is passed, the new userdata will share that proxy's metatable.
Returns[edit]
- obj
- Userdata (an opaque block of memory)
Details[edit]
The newproxy function is an undocumented part of the Lua 5 base library. It is included here because it is used in the implementation of the Secure Headers added in WoW 3.0 (see FrameXML\SecureHandlers.lua), and addon authors looking over that code are likely to be curious about what it does.
For more details, see http://lua-users.org/wiki/HiddenFeatures (including the links into the lua-users mailing list at the end of that section). A concise summary is here.