Epok Engine

EPOK RUNTIME

epok::sequence_parameters

Function · 1 overload

Function

Performs `sequence parameters` as part of the sequence service module.

Belongs to
epok
Header
sequence_service.hpp
Overloads
1

Declaration

Declaration
inline psx_audio::Parameters sequence_parameters(const AudioSource* source)

Performs `sequence parameters` as part of the sequence service module.

ParameterTypeMeaning
sourceconst AudioSource *Value supplied for source. Keep referenced or pointed-to data valid for the complete call.

Returns: psx_audio::Parameters. Check the value before continuing when it represents success, availability or a resource handle.

Example

C++ example
#include "sequence_service.hpp"

// Assume these named values have been initialized with valid data:
// const AudioSource * source

auto result = epok::sequence_parameters(source);

Why use it

It provides direct, allocation-conscious access to the sequence service module. No exception-based error path is implied by the signature.

Trade-offs and warnings

Pointer/reference arguments are borrowed unless the source contract says otherwise; keep them valid for the complete operation and never assume null is accepted.

Declared in runtime/sequence_service.hpp:243

Related members