mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
17 lines
241 B
C++
17 lines
241 B
C++
#pragma once
|
|
|
|
//#define BUILD_CONFIG_OPENSOURCE_VERSION
|
|
#define BUILD_CONFIG_FULL_VERSION
|
|
|
|
#ifdef BUILD_CONFIG_OPENSOURCE_VERSION
|
|
|
|
class CRegistratorClient
|
|
{
|
|
public:
|
|
static BOOL IsRegistered()
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
#endif |