You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
490 B
22 lines
490 B
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// SYNOPSIS
|
|
//
|
|
// Declares the function CheckLicense.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef CHECKLICENSE_H
|
|
#define CHECKLICENSE_H
|
|
#pragma once
|
|
|
|
#include "datastore2.h"
|
|
|
|
void CheckLicense(
|
|
const wchar_t* path,
|
|
IAS_SHOW_TOKEN_LIST type
|
|
);
|
|
|
|
#endif // CHECKLICENSE_H
|