[Mplayer-cvslog] CVS: main/loader/qtx qtxload.c,1.2,1.3
Alex Beregszaszi
alex at mplayer.dev.hu
Wed Oct 31 00:20:33 CET 2001
Update of /cvsroot/mplayer/main/loader/qtx
In directory mplayer:/var/tmp.root/cvs-serv9590
Modified Files:
qtxload.c
Log Message:
hm, non-working :)
Index: qtxload.c
===================================================================
RCS file: /cvsroot/mplayer/main/loader/qtx/qtxload.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qtxload.c 27 Oct 2001 18:05:29 -0000 1.2
+++ qtxload.c 30 Oct 2001 23:20:31 -0000 1.3
@@ -1,3 +1,5 @@
+/* to compile: gcc -o qtxload qtxload.c ../libloader.a -lpthread -ldl -ggdb ../../cpudetect.o */
+
#include <stdio.h>
#include "qtxsdk/components.h"
@@ -21,7 +23,7 @@
return(".");
}
-main()
+main(int argc, char *argv[])
{
void *handler;
void *dispatcher;
@@ -45,9 +47,9 @@
params = malloc(sizeof(struct ComponentParameters));
- params->flags = 0;
+ params->flags = 2;
params->paramSize = sizeof(params);
- params->what = 0x3f; /* probarly register :p */
+ params->what = atoi(argv[1]);
params->params[0] = 0x1984;
/* 0x1000100f will load QuickTime.qts */
/* 0x10001014 will use SendMessageA */
@@ -57,10 +59,11 @@
/* 0x1000102d is a dialog */
/* 0x10001032 returns 20001 => CDVersion */
/* 0x10001069 returns 8a */
+ /* 0x100010b4 probarly init ?? */
printf("params: flags: %d, paramSize: %d, what: %d\n",
params->flags, params->paramSize, params->what);
printf("params[0] = %x\n", params->params[0]);
- ret = dispatcher_func(¶ms, globals);
+ ret = dispatcher_func(params, globals);
printf("CDComponentDispatch(%p, %p) => %x\n",
¶ms, globals, ret);
free(globals);
More information about the MPlayer-cvslog
mailing list