| 430 | } |
| 431 | |
| 432 | BF_EXPORT void BF_CALLTYPE BFWindow_Close(BFWindow* window, int force) |
| 433 | { |
| 434 | if (force != 0) |
| 435 | gBFApp->RemoveWindow(window); |
| 436 | else |
| 437 | window->TryClose(); |
| 438 | } |
| 439 | |
| 440 | BF_EXPORT int BF_CALLTYPE BFWindow_GetDPI(BFWindow* window) |
| 441 | { |
nothing calls this directly
no test coverage detected