45 lines
1.5 KiB
OpenEdge ABL
45 lines
1.5 KiB
OpenEdge ABL
////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright 2016 Google Inc.
|
|
//
|
|
// This software is licensed under the terms defined in the Widevine Master
|
|
// License Agreement. For a copy of this agreement, please contact
|
|
// widevine-licensing@google.com.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Swig file to generate a Python library for:
|
|
// provisioning_sdk/public/provisioning_status.h
|
|
|
|
%module pywrapprovisioning_status
|
|
|
|
%include "base.i"
|
|
|
|
%{
|
|
#include "provisioning_sdk/public/provisioning_status.h"
|
|
%}
|
|
|
|
%ignoreall
|
|
|
|
%unignore widevine;
|
|
%unignore widevine::ProvisioningStatus;
|
|
%unignore widevine::OK;
|
|
%unignore widevine::PROVISIONING_ENGINE_UNINITIALIZED;
|
|
%unignore widevine::INVALID_SERVICE_DRM_CERTIFICATE;
|
|
%unignore widevine::INVALID_SERVICE_PRIVATE_KEY;
|
|
%unignore widevine::INVALID_PROVISIONER_DRM_CERTIFICATE;
|
|
%unignore widevine::INVALID_PROVISIONER_PRIVATE_KEY;
|
|
%unignore widevine::INVALID_STATUS_LIST;
|
|
%unignore widevine::STATUS_LIST_EXPIRED;
|
|
%unignore widevine::UNKNOWN_SYSTEM_ID;
|
|
%unignore widevine::INVALID_DEVICE_PUBLIC_KEY;
|
|
%unignore widevine::INVALID_DEVICE_PRIVATE_KEY;
|
|
%unignore widevine::INVALID_REQUEST_MESSAGE;
|
|
%unignore widevine::MISSING_DRM_INTERMEDIATE_CERT;
|
|
%unignore widevine::DEVICE_REVOKED;
|
|
%unignore widevine::INVALID_SERIAL_NUMBER;
|
|
%unignore widevine::INVALID_SPOID_SAUCE;
|
|
%unignore widevine::GetProvisioningStatusMessage;
|
|
|
|
%include "provisioning_sdk/public/provisioning_status.h"
|
|
|
|
%unignoreall
|