Entry point of the the library.
| 2 | |
| 3 | /// Entry point of the the library. |
| 4 | BOOL WINAPI DllMain(HINSTANCE, DWORD, LPVOID) |
| 5 | { |
| 6 | // Indicate successful load of the library. |
| 7 | return TRUE; |
| 8 | } |
| 9 | |
| 10 | /// Starts a NodeRelay. |
| 11 | /// @param leaveImmediately if false then waits for Relay to be shut down internally by a C3 API Command. |
nothing calls this directly
no outgoing calls
no test coverage detected