| 152 | |
| 153 | |
| 154 | int main(INT argc, CHAR** argv) |
| 155 | { |
| 156 | LOG_A(LOG_INFO, "Starting RedEdr PPL Service %s", REDEDR_VERSION); |
| 157 | |
| 158 | DWORD result = ServiceEntry(); |
| 159 | if (result != 0) { |
| 160 | LOG_A(LOG_ERROR, "Service failed to start, error: %d", result); |
| 161 | } |
| 162 | |
| 163 | LOG_A(LOG_INFO, "RedEdr PPL Service terminated"); |
| 164 | return result; |
| 165 | } |
nothing calls this directly
no test coverage detected