reactos/base/applications/rapps/include/rapps.h
Mark Jansen 33c2903e6d
[RAPPS] Rework application handling
Previously, there would be function duplication between installed and available applications.
Now this is handled with polymorphism, which allows to re-use a lot of code.
Additionally, toolbar buttons are properly disabled now.
The mutex used to guard rapps' single instance is renamed,
so that the 'new' and old rapps can be run at the same time for testing.

CORE-18459
2023-02-20 19:30:02 +01:00

17 lines
266 B
C

#ifndef _RAPPS_H
#define _RAPPS_H
#if DBG && !defined(_DEBUG)
#define _DEBUG // CORE-17505
#endif
#include "defines.h"
#include "dialogs.h"
#include "applicationinfo.h"
#include "applicationdb.h"
#include "misc.h"
#include "configparser.h"
#endif /* _RAPPS_H */