/* Copyright (c) 2013-2015 Jeffrey Pfau * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef DIRECTORIES_H #define DIRECTORIES_H #include "util/common.h" #if !defined(MINIMAL_CORE) || MINIMAL_CORE < 2 struct VDir; struct mDirectorySet { char baseName[PATH_MAX]; struct VDir* base; struct VDir* archive; struct VDir* save; struct VDir* patch; struct VDir* state; struct VDir* screenshot; }; void mDirectorySetInit(struct mDirectorySet* dirs); void mDirectorySetDeinit(struct mDirectorySet* dirs); void mDirectorySetAttachBase(struct mDirectorySet* dirs, struct VDir* base); void mDirectorySetDetachBase(struct mDirectorySet* dirs); struct VFile* mDirectorySetOpenPath(struct mDirectorySet* dirs, const char* path, bool (*filter)(struct VFile*)); struct VFile* mDirectorySetOpenSuffix(struct mDirectorySet* dirs, struct VDir* dir, const char* suffix, int mode); struct mCoreOptions; void mDirectorySetMapOptions(struct mDirectorySet* dirs, const struct mCoreOptions* opts); #endif #endif