Difference between revisions of "WR DestroyObject"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(possible caveat.)
m (Fixing source)
 
Line 1: Line 1:
 
{{dafunction
 
{{dafunction
|name = WR_DestroyObject
+
|name         = WR_DestroyObject
|brief =  
+
|brief         = {{undocumented}}
|param1type = object
+
|param1type   = object
|param1name = oObject
+
|param1name   = oObject
|param1desc = Object to destroy
+
|param1desc   = Object to destroy
 
|param1default =
 
|param1default =
 
+
|returntype   = void
|returntype = void
+
|returndesc   =  
|returndesc =  
+
|sourcefile   = wrappers_h
|sourcefile = wrappers_h
+
|sourcemodule = Core Game Resources
|sourcemodule = Core Resources
+
 
}}
 
}}
  
 
<!-- == Description == -->
 
<!-- == Description == -->
 
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. -->
 
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. -->
 
 
== Remarks ==
 
== Remarks ==
 
<!-- This section contains additional comments, observations and known issues. -->
 
<!-- This section contains additional comments, observations and known issues. -->
 
+
This function calls [[DestroyObject]], which can be unsafe in some circumstances. See [[Safe Destroy Object]].
This function simply calls [[DestroyObject]], which can be unsafe in some circumstances. See [[Safe Destroy Object]].
+
 
+
 
<!-- == Examples == -->
 
<!-- == Examples == -->
 
<!-- This section contains examples transcluded from the snippet library. -->
 
<!-- This section contains examples transcluded from the snippet library. -->
 
 
<!-- == See also == -->
 
<!-- == See also == -->
 
<!-- This section contains links to articles, functions or constant groups. -->
 
<!-- This section contains links to articles, functions or constant groups. -->
 
  
 
[[Category:Object functions]]
 
[[Category:Object functions]]

Latest revision as of 14:03, 27 March 2012

[Undocumented]

void WR_DestroyObject(
object oObject
);
Parameters:
oObject
Object to destroy
Returns:

Nothing.

Source:

Core Game Resources.wrappers_h

Remarks

This function calls DestroyObject, which can be unsafe in some circumstances. See Safe Destroy Object.