mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(registry): add basic registry implementation
This commit is contained in:
parent
2ffa8217c0
commit
f8a7ac7001
20 changed files with 1318 additions and 73 deletions
|
|
@ -3,8 +3,9 @@
|
|||
#include <cstring>
|
||||
|
||||
void SARC4PrepareKey(const void* data, uint32_t len, SARC4Key* key) {
|
||||
STORM_ASSERT(data);
|
||||
STORM_VALIDATE(data, ERROR_INVALID_PARAMETER);
|
||||
STORM_VALIDATE_BEGIN;
|
||||
STORM_VALIDATE(data);
|
||||
STORM_VALIDATE_END;
|
||||
|
||||
key->x = 0;
|
||||
key->y = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue