mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 21:21:50 +00:00
12 lines
138 B
C
12 lines
138 B
C
|
#pragma once
|
||
|
|
||
|
enum NcaTypes {
|
||
|
Porgram = 0,
|
||
|
Meta,
|
||
|
Control,
|
||
|
Manual,
|
||
|
Data,
|
||
|
PublicData
|
||
|
};
|
||
|
|
||
|
int GetNcaType(char *path);
|