Skip to content

Commit 6b9d2da

Browse files
authored
v1.0.3
1 parent 84d1e54 commit 6b9d2da

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

README.md

+27-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ MsgBox(0, "", $myCar.DisplayCar)
1818
```
1919

2020
## **TODO:**
21-
* Garbage collection
21+
* ~Garbage collection~ **_Added in v1.0.3 with the exception of interface methods_**
2222
* ~Method support~ **_Added in v0.1.2_**
2323
* ~Support for more/all AutoIt variable-types~ **_Added in v1.0.0_**
2424
* ~Accessors~ **_Added in v0.1.0_**
@@ -108,6 +108,20 @@ __lock()
108108
Type | Name | description
109109
--- | --- | ---
110110

111+
### __destructor
112+
113+
#### **Syntax**
114+
115+
__destructor(DestructorFunction)
116+
117+
#### **Description:**
118+
119+
DestructorFunction is called when the lifetime of the object ends
120+
121+
Type | Name | description
122+
--- | --- | ---
123+
Function | DestructorFunction | Function to be called when lifetime of the object ends
124+
111125
## **Other**
112126

113127
### Function
@@ -147,11 +161,22 @@ IDispatch | arguments | A locked IDispatch object.<br />For more info, see Argum
147161
#### **Description:**
148162

149163
A locked IDispatch object, used with the AccessorObject
150-
151164

152165
#### **Properties:**
153166

154167
Type | Name | description | Access
155168
--- | --- | --- | ---
156169
int32 | length | number of arguments passed with the call | Read and Write
157170
Array | values | the arguments passed with the call | Read and Write
171+
172+
### DestructorFunction([self])
173+
174+
#### **Description:**
175+
176+
the callback function used with destructors
177+
178+
#### **Parameters:**
179+
180+
Type | Name | description
181+
--- | --- | ---
182+
IDispatch | self | The IDispatch object containing the destructor

0 commit comments

Comments
 (0)