blob: c6847b26e15491bb5bbcff39e9f8a095f86ab079 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# This module has a primitive interface to the
# mpeg device driver
#
Mpeg: module
{
PATH: con "/dis/lib/mpeg.dis";
play: fn(d: ref Draw->Display, w: ref Image, dopaint: int,
r: Draw->Rect, file: string, notify: chan of string): string;
ctl: fn(msg: string): int;
keycolor: fn(d: ref Draw->Display): ref Draw->Image;
};
|