Skip to main content

Description

Defines error codes returned by LckResult when an operation fails. Each value indicates a specific failure condition in LCK.

Enum Values

NameValueDescription
ServiceNotCreated1The service has not been created before the call.
ServiceDisposed2The service has already been disposed and can no longer be used.
InvalidDescriptor3The provided LckDescriptor was invalid.
CameraIdNotFound4The specified camera ID could not be found.
MonitorIdNotFound5The specified monitor ID could not be found.
MicrophonePermissionDenied6Microphone permission was denied by the user or system.
RecordingAlreadyStarted7A recording session is already in progress.
NotCurrentlyRecording8Stop or query was attempted while no recording was active.
NotPaused9An attempt to resume recording was made while the recording was not paused.
RecordingError10An error occurred while recording.
PhotoCaptureError11An error occurred while capturing a photo.
CantEditSettingsWhileRecording12Settings cannot be changed during an active recording.
NotEnoughStorageSpace13The device does not have enough free storage space.
FailedToCopyRecordingToGallery14A recorded video could not be copied to the gallery.
FailedToCopyPhotoToGallery15A captured photo could not be copied to the gallery.
UnsupportedGraphicsApi16The current graphics API is not supported by LCK.
UnsupportedPlatform17The current platform is not supported by LCK.
MicrophoneError18A runtime error occurred with microphone input.
StreamerNotImplemented19No impelentation of a streaming framework is impelemted. This can occur if the Streaming package has been removed.
StreamingError20An error occured during streaming.
EncodingError21An error occured during encoding.
UnknownError22An unspecified or unknown error occurred.
I