Updated GetElementById (markdown)
parent
ec324d583e
commit
385abb538b
1 changed files with 4 additions and 2 deletions
|
|
@ -1,6 +1,8 @@
|
||||||
```cpp
|
```cpp
|
||||||
void* Crafter::CppDOM::Bindings::GetElementById(const char* id, std::size_t idLenght);
|
namespace Crafter::CppDOM::Bindings {
|
||||||
void* Crafter::CppDOM::Bindings::GetElementById(const std::string& id);
|
void* GetElementById(const char* id, std::size_t idLenght);
|
||||||
|
void* GetElementById(const std::string& id);
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Accepts an id string and returns a void* to a JS object.
|
Accepts an id string and returns a void* to a JS object.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue