platform: add epay hook

This commit is contained in:
2023-09-15 01:35:33 -04:00
parent 0d83977073
commit 157f52da4c
9 changed files with 426 additions and 3 deletions

View File

@ -5,6 +5,7 @@
#include "platform/amvideo.h"
#include "platform/clock.h"
#include "platform/dns.h"
#include "platform/epay.h"
#include "platform/hwmon.h"
#include "platform/misc.h"
#include "platform/netenv.h"
@ -80,5 +81,11 @@ HRESULT platform_hook_init(
return hr;
}
hr = epay_hook_init(&cfg->epay);
if (FAILED(hr)) {
return hr;
}
return S_OK;
}