ref: 8b9bbe660ea1dad5f1f8e695e752ed24293533ec
dir: /src/pt2_modloader.h/
#pragma once #include <stdint.h> #include <stdbool.h> #include "pt2_header.h" #include "pt2_unicode.h" #include "pt2_structs.h" void showSongUnsavedAskBox(int8_t askScreenType); void loadModFromArg(char *arg); void loadDroppedFile(char *fullPath, uint32_t fullPathLen, bool autoPlay, bool songModifiedCheck); void loadDroppedFile2(void); module_t *createNewMod(void); bool saveModule(bool checkIfFileExist, bool giveNewFreeFilename); bool modSave(char *fileName); module_t *modLoad(UNICHAR *fileName); void setupNewMod(void);