8842a83cbd
- aggiunta la libreria Optalog per nesting automatico.
29 lines
566 B
C
29 lines
566 B
C
#ifndef CNS_EGALTECH_H
|
|
#define CNS_EGALTECH_H
|
|
|
|
#include "cns.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* Unlock the launching order.
|
|
*
|
|
* @param oxy_id must be a currently attached dongle_id
|
|
* @param oxy_signature must be a valid signature associated with the dongle.
|
|
*/
|
|
CNS_EXPORT void CNS_API
|
|
CNS_UnLockLaunchingOrderOxy(CNS_LaunchingOrderPtr launching_order,
|
|
const char * oxy_id,
|
|
const char * oxy_signature);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|