26 lines
365 B
Markdown
26 lines
365 B
Markdown
# LoadNode
|
||||
|
|
|
|||
|
|
Reads node data from a file.
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
bool LoadNode(
|
|||
|
|
int file_handle, // handle
|
|||
|
|
CTreeNode* main // node
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
Parameters
|
|||
|
|
|
|||
|
|
file_handle
|
|||
|
|
|
|||
|
|
[in] Handle of a binary file that was earlier opened for reading.
|
|||
|
|
|
|||
|
|
main
|
|||
|
|
|
|||
|
|
[in] Node for data.
|
|||
|
|
|
|||
|
|
Return Value
|
|||
|
|
|
|||
|
|
true - success, otherwise false.
|