94 lines
3.1 KiB
C
94 lines
3.1 KiB
C
|
/*
|
||
|
==============================================================================
|
||
|
|
||
|
This file is part of the JUCE library.
|
||
|
Copyright (c) 2017 - ROLI Ltd.
|
||
|
|
||
|
JUCE is an open source library subject to commercial or open-source
|
||
|
licensing.
|
||
|
|
||
|
By using JUCE, you agree to the terms of both the JUCE 5 End-User License
|
||
|
Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
|
||
|
27th April 2017).
|
||
|
|
||
|
End User License Agreement: www.juce.com/juce-5-licence
|
||
|
Privacy Policy: www.juce.com/juce-5-privacy-policy
|
||
|
|
||
|
Or: You may also use this code under the terms of the GPL v3 (see
|
||
|
www.gnu.org/licenses).
|
||
|
|
||
|
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
|
||
|
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
|
||
|
DISCLAIMED.
|
||
|
|
||
|
==============================================================================
|
||
|
*/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
The block below describes the properties of this module, and is read by
|
||
|
the Projucer to automatically generate project code that uses it.
|
||
|
For details about the syntax and how to create or use a module, see the
|
||
|
JUCE Module Format.txt file.
|
||
|
|
||
|
|
||
|
BEGIN_JUCE_MODULE_DECLARATION
|
||
|
|
||
|
ID: juce_product_unlocking
|
||
|
vendor: juce
|
||
|
version: 5.3.2
|
||
|
name: JUCE Online marketplace support
|
||
|
description: Classes for online product authentication
|
||
|
website: http://www.juce.com/juce
|
||
|
license: GPL/Commercial
|
||
|
|
||
|
dependencies: juce_cryptography juce_core
|
||
|
|
||
|
END_JUCE_MODULE_DECLARATION
|
||
|
|
||
|
*******************************************************************************/
|
||
|
|
||
|
|
||
|
#pragma once
|
||
|
#define JUCE_PRODUCT_UNLOCKING_H_INCLUDED
|
||
|
|
||
|
/**
|
||
|
The juce_product_unlocking module provides simple user-registration classes
|
||
|
for allowing you to build apps/plugins with features that are unlocked by a
|
||
|
user having a suitable account on a webserver.
|
||
|
|
||
|
Although originally designed for use with products that are sold on the
|
||
|
Tracktion Marketplace web-store, the module itself is fully open, and can
|
||
|
be used to connect to your own web-store instead, if you implement your
|
||
|
own compatible web-server back-end.
|
||
|
|
||
|
In additional, the module supports in-app purchases both on iOS and Android
|
||
|
platforms.
|
||
|
*/
|
||
|
|
||
|
//==============================================================================
|
||
|
#include <juce_core/juce_core.h>
|
||
|
#include <juce_cryptography/juce_cryptography.h>
|
||
|
|
||
|
#if JUCE_MODULE_AVAILABLE_juce_data_structures
|
||
|
#include <juce_data_structures/juce_data_structures.h>
|
||
|
#endif
|
||
|
|
||
|
#if JUCE_MODULE_AVAILABLE_juce_gui_extra
|
||
|
#include <juce_gui_extra/juce_gui_extra.h>
|
||
|
#endif
|
||
|
|
||
|
#if JUCE_IN_APP_PURCHASES
|
||
|
#include "in_app_purchases/juce_InAppPurchases.h"
|
||
|
#endif
|
||
|
|
||
|
#if JUCE_MODULE_AVAILABLE_juce_data_structures
|
||
|
#include "marketplace/juce_OnlineUnlockStatus.h"
|
||
|
#include "marketplace/juce_TracktionMarketplaceStatus.h"
|
||
|
#endif
|
||
|
|
||
|
#include "marketplace/juce_KeyFileGeneration.h"
|
||
|
|
||
|
#if JUCE_MODULE_AVAILABLE_juce_gui_extra
|
||
|
#include "marketplace/juce_OnlineUnlockForm.h"
|
||
|
#endif
|