1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
silica-viewer/SilicaViewer/SilicaViewer-Bridging-Header.h

9 lines
203 B
C
Raw Normal View History

2021-09-15 14:10:07 -04:00
#include <stdint.h>
#include "minilzo.h"
uint32_t valueForKeyedArchiverUID(uint64_t keyedArchiverUID) {
void *uid = (void*)keyedArchiverUID;
uint32_t *valuePtr = uid+16;
return *valuePtr;
}