-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Heap Corruption Detected #536
Comments
Does |
If I add the code '<script src=\“webui.js\”></script> ' to the HTML code, the program reports error |
here is the information
[Core] _webui_http_handler() -> HTTP Status Code: 200 [Core] _webui_free_mem(0x000001C9A9AB86A0) |
I just test it, it's working fine for me.
I guess you are doing something with includes, or how you compile project. Make sure the static library and your project are compiled with the same compiler version. The |
Try this: #include "webui.hpp"
#include ... // Your project includes here
int main() {
webui::window my_window;
my_window.show_browser("<html><head><script src=\"webui.js\"></script></head> TEST </html>", Edge); // Or Chrome, Firefox...
webui::wait();
return 0;
} |
how can i fix this problem
The text was updated successfully, but these errors were encountered: