Inital Commit
All checks were successful
VLMCSD / VLMCSD [arm64] (push) Successful in 12s
VLMCSD / VLMCSD [amd64] (push) Successful in 18s

This commit is contained in:
Cantibra
2025-10-26 21:11:06 +01:00
commit 5de27443af
99 changed files with 25806 additions and 0 deletions

14
sources/src/KMSServer.idl Normal file
View File

@@ -0,0 +1,14 @@
[
uuid(51C82175-844E-4750-B0D8-EC255555BC06),
version(1.0),
]
interface KMSServer
{
int RequestActivation
(
[in] int requestSize,
[in, size_is(requestSize)] unsigned char* request,
[out] int* responseSize,
[out, size_is( , *responseSize)] unsigned char** response
);
}