simple http client

This commit is contained in:
2026-01-03 04:20:33 +02:00
parent 1897035d8e
commit 965cecc901
16 changed files with 428 additions and 521 deletions

View File

@@ -26,6 +26,15 @@ public:
virtual CUtlString SignPackage( const char *szIpa, const char *szPassword ) = 0;
};
abstract_class IAppleDaemon
{
public:
virtual void SignPackage( const char *szIpa ) = 0;
};
#define APPLE_DAEMON_INTERFACE_VERSION "AppleDaemon001"
IAppleTool *AppleTool();
#endif