(Mostly) finish QR support

This commit is contained in:
2017-09-04 02:03:58 -04:00
parent 7aed454297
commit 3241544296
4 changed files with 124 additions and 1 deletions

View File

@@ -38,6 +38,7 @@ int init_services(void)
{
cfguInit();
ptmuInit();
httpcInit(0);
open_archives();
bool homebrew = true;
if (!envIsHomebrew())
@@ -59,6 +60,7 @@ int exit_services(void)
close_archives();
cfguExit();
ptmuExit();
httpcExit();
return 0;
}