mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 04:22:50 +02:00
12 lines
197 B
C
12 lines
197 B
C
#include "types.h"
|
|
#include "result.h"
|
|
#include "services/caps.h"
|
|
#include "runtime/hosversion.h"
|
|
|
|
u64 capsGetShimLibraryVersion(void) {
|
|
u64 version=1; // [7.0.0-8.1.0]
|
|
|
|
return version;
|
|
}
|
|
|