| 778 | return false; |
| 779 | } |
| 780 | bool OverlayNeedsPresent() |
| 781 | { |
| 782 | FARPROC OverLayEn = GetProcAddress(OverLayModule, "BOverlayNeedsPresent"); // Load BOverlayNeedsPresent from STEAMOVERLAY module |
| 783 | if (OverLayEn) |
| 784 | return ((bool(*)())OverLayEn)(); // Call the virtual loaded function, most of people uses typedef method but in this way more fast |
| 785 | return false; |
| 786 | } |
| 787 | int InitInterfaces() |
| 788 | { |
| 789 | InterfaceData StructureData = { 0 }; |
no outgoing calls
no test coverage detected