Audacity 3.2.0
ModuleSettings.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 @file ModuleSettings.h
6
7 Paul Licameli split from ModulePrefs.h
8
9**********************************************************************/
10
11#ifndef __AUDACITY_MODULE_SETTINGS__
12#define __AUDACITY_MODULE_SETTINGS__
13
14#include "Identifier.h"
15
16enum {
19 kModuleAsk = 2, // Will ask, each time, when audacity starts.
20 kModuleFailed = 3, // Audacity thinks this is a bad module.
21 kModuleNew = 4 // Audacity will ask once, and remember the answer.
22};
23
24namespace ModuleSettings {
25
26MODULE_MANAGER_API int GetModuleStatus( const FilePath &fname );
27MODULE_MANAGER_API void SetModuleStatus( const FilePath &fname, int iStatus );
28
29}
30
31#endif
@ kModuleDisabled
@ kModuleAsk
@ kModuleFailed
@ kModuleNew
@ kModuleEnabled
wxString FilePath
Definition: Project.h:21
MODULE_MANAGER_API void SetModuleStatus(const FilePath &fname, int iStatus)
MODULE_MANAGER_API int GetModuleStatus(const FilePath &fname)