Epok Engine

EPOK RUNTIME

epok::psx_audio::Instance::native_begin

Method · 1 overload

Method

Performs `native begin` as part of the sequence service module.

Belongs to
epok::psx_audio::Instance
Header
sequence_service.hpp
Overloads
1

Declaration

Declaration
void native_begin()

Performs `native begin` as part of the sequence service module.

This overload takes no parameters.

Returns: Nothing (void).

Example

C++ example
#include "sequence_service.hpp"

epok::psx_audio::Instance& object = /* obtain a valid instance */;

object.native_begin();

Why use it

The API exposes the hardware service without hiding latency or bounded memory.

Trade-offs and warnings

Treat device absence, busy state and I/O failure as expected outcomes; do not block the frame loop waiting for hardware.

Declared in runtime/sequence_service.hpp:93

Related members