diff --git a/src/de/mas/wiiu/jnus/ExtractionService.java b/src/de/mas/wiiu/jnus/ExtractionService.java index e3caef7..e29b7a5 100644 --- a/src/de/mas/wiiu/jnus/ExtractionService.java +++ b/src/de/mas/wiiu/jnus/ExtractionService.java @@ -166,4 +166,8 @@ public final class ExtractionService { } + public byte[] getBytesFromContent(Content c, long offset, long size) throws IOException { + return getDataProvider().getChunkFromContent(c, offset, (int) size); + } + }