LicenseSpring C++ SDK 7.31.0
Easily add Software Licensing to your application
Loading...
Searching...
No Matches
LicenseID.h
Go to the documentation of this file.
1#ifndef LS_C_LICENSE_ID_H
2#define LS_C_LICENSE_ID_H
3
4#include "../APIDef.h"
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10 LS_API typedef struct LSLicenseID
11 {
12 const char* key;
13 const char* user;
14 const char* password;
16
17 LS_API LSLicenseID CreateLicenseIDfromKey( const char* licenseKey );
18 LS_API LSLicenseID CreateLicenseIDfromUser( const char* user, const char* password );
19
20#ifdef __cplusplus
21} // end extern "C"
22#endif
23
24#endif // LS_C_LICENSE_ID_H
#define LS_API
Macros that expands to dllexport, dllimport or nothing on non Windows platforms or in case of static ...
Definition APIDef.h:22
LS_API LSLicenseID CreateLicenseIDfromKey(const char *licenseKey)
LS_API LSLicenseID CreateLicenseIDfromUser(const char *user, const char *password)
const char * password
Definition LicenseID.h:14
const char * key
Definition LicenseID.h:12
const char * user
Definition LicenseID.h:13