mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
0ec400890c
Original commit message from CVS: initial checkin
11 lines
244 B
C
11 lines
244 B
C
#include <glib.h>
|
|
#include <dummy.h>
|
|
|
|
int main(int argc,char *argv[]) {
|
|
Dummy *driver,*passenger;
|
|
|
|
driver = dummy_new();
|
|
passenger = dummy_new_with_name("moron");
|
|
|
|
g_print("created a couple of dummies, %p and %p\n",driver,passenger);
|
|
}
|