[Cegcc-devel] directshow inclusion

2009-01-21 Thread Ryan Raasch
do i begin? I think i should create the .def and .h files. Then generate .lib files with which my application can link to. Is this the right direction? BTW, i am using this in conjunction with EFL libraries. Thanks, Ryan R

Re: [Cegcc-devel] directshow inclusion

2009-01-21 Thread Ryan Raasch
Thanks for response. So now i am reading through the strmif.h and inluding the missing interfaces and methods (IPin, IBaseFilter, IGraphBuilder, etc. ). From what i've read, these definitions are generated from an idl file, strmif.h using MIDL.exe. Any comments? Ryan Vincent Torri wrote: >

[Cegcc-devel] preliminary direct show patches

2009-01-22 Thread Ryan Raasch
Hello, I got a test program compiled and linked with some directshow stuff. Hadn't tested it yet, but wanted to send a small patch with some easy fixes first. Ryan diff --git a/cegcc/src/w32api/include/amvideo.h b/cegcc/src/w32api/include/amvideo.h index 10e8e60..906d6ab 100644 --- a/cegcc/sr

[Cegcc-devel] [PATCH] dshow.h enumeration addition

2009-01-22 Thread Ryan Raasch
Another patch to include the FILTER_STATE enumeration. I think this is used with the IBaseFilter interface. I will soon find out. Ryan diff --git a/cegcc/src/w32api/include/dshow.h b/cegcc/src/w32api/include/dshow.h index da4bf68..7d24759 100644 --- a/cegcc/src/w32api/include/dshow.h +++ b/cegcc

[Cegcc-devel] [PATCH] dshow inclusion

2009-01-23 Thread Ryan Raasch
Hello, This is a preliminary patch for dshow. I only have a test program i am using to verify the compile and linking with. The Windows API stuff is extensive. I removed the dependencies for ddraw (which only has a def file in the source), and for the AM* stuff ( i think controlling camera fr

Re: [Cegcc-devel] [PATCH] dshow inclusion

2009-01-26 Thread Ryan Raasch
d include files from Visual Studio or so ? That would be a show stopper. No. If you obtained all this info by e.g. browsing MSDN, that would be admissible. Yes. Ryan Danny On Fri, 2009-01-23 at 21:43 +0100, Ryan Raasch wrote: Hello, This is a preliminary patch for dshow. I only have

[Cegcc-devel] Direct Show location - Console tool

2009-01-27 Thread Ryan Raasch
Hello, As i have found out over the last few days, the direct show api/interfaces supported on the CE platform is different than the desktop (i was dumb to assume different). Would it be better to be editing or adding files for directx/directshow/etc. under libce? And not in the w32 directory?

Re: [Cegcc-devel] Sending/receiving SMS messages using cegcc?

2009-01-27 Thread Ryan Raasch
Eric House wrote: > Anybody looked into doing this, i.e. (I assume) creating sms.h and > sms.def files? I want to implement transport over SMS for users who > don't have data plans. > The .def files in src/w32api/libce. So "just" the headers are needed. > Thanks, > > --Eric

[Cegcc-devel] [PATCH] winbase device manager funcs.

2009-01-27 Thread Ryan Raasch
Hello, This is a patch including the function to iterate through the system devices based on http://msdn.microsoft.com/en-us/library/aa930135.aspx Thanks, Ryan diff --git a/cegcc/src/w32api/include/winbase.h b/cegcc/src/w32api/include/winbase.h index 0502602..33645fe 100644 --- a/cegcc/src/w3

[Cegcc-devel] [PATCH V2] -- Coredll def's

2009-01-27 Thread Ryan Raasch
Sorry. I forgot to add the definitions to the coredll.def file. This patch includes just that. Thanks, Ryan --- a/cegcc/src/w32api/libce/coredll.def +++ b/cegcc/src/w32api/libce/coredll.def @@ -290,6 +290,7 @@ EnterCriticalSection EnumCalendarInfoW EnumClipboardFormats EnumDateFormatsW +EnumD

[Cegcc-devel] CLSID's UUID's usage

2009-01-27 Thread Ryan Raasch
Hello, I am trying to use the CLSID's located in the file src/w32api/lib/directx/strmiids.c Two issues. 1. There is not a defining header for the CLSID's ( could use extern const's). 2. There are no symbols in the toolchain's import libraries or dlls to link to. Why is this file not compiled

Re: [Cegcc-devel] Sending/receiving SMS messages using cegcc?

2009-01-27 Thread Ryan Raasch
Eric House wrote: >> Eric House wrote: >>> Anybody looked into doing this, i.e. (I assume) creating sms.h and >>> sms.def files? I want to implement transport over SMS for users who >>> don't have data plans. > > Ryan Raasch replied: >> The .de

Re: [Cegcc-devel] [PATCH] winbase device manager funcs.

2009-01-29 Thread Ryan Raasch
Great! Danny Backx wrote: > I've added one definition (EnumDevices) and committed. > Thanks ! > > Danny > > On Tue, 2009-01-27 at 12:02 +0100, Ryan Raasch wrote: >> Hello, >> >> This is a patch including the function to iterate through t

Re: [Cegcc-devel] error: cannot find ltdl.h - when compile the cacao JVM

2009-01-30 Thread Ryan Raasch
One could also use libevil, from the Enlightenment Libraries. It is a library used by the e libraries to support those function calls. It does not have any dependencies. Vincent Torri knows best :) Ryan Danny Backx wrote: > That's probably because the contents of ltdl.h is not supported on > W

Re: [Cegcc-devel] CLSID's UUID's usage

2009-02-02 Thread Ryan Raasch
gt; On Thu, 2009-01-29 at 11:30 +0100, Ryan Raasch wrote: >> The issue is the uuids under >> >> src/lib/directx >> >> ( many needed uuids are in src/lib/directx/strmiids.c ) >> >> are not compiled in when using the mingw32ce compiler. Therefore, none >>

[Cegcc-devel] [PATCH] Added the subdirectory of libce/directx to build directx.

2009-02-06 Thread Ryan Raasch
This patch alters the makefile/configure stuff to dip down to the directx directory to build and install. NOTE: Didn't completely figure out how srcdir, etc. So too many headers installed. Ryan diff --git a/cegcc/src/w32api/configure.in b/cegcc/src/w32api/configure.in index a016bb4..b2905d7

[Cegcc-devel] [PATCH] Added more directx stuff to libce.

2009-02-06 Thread Ryan Raasch
Hello, This patch copies the Makefile.in, ddraw.def, directx media objects header file and adds ddraw.h to the libce. This is the first of series of patches. - To build the import library of strmiids.lib, and ddraw.lib - To have a ddraw.h ( from MSDN ) , but needs polishing, and can'

[Cegcc-devel] Ddraw link

2009-02-06 Thread Ryan Raasch
Just so there is no doubt to the creation of ddraw.h. http://msdn.microsoft.com/en-us/library/aa913258.aspx But i cannot find the values for the defines! Example: http://msdn.microsoft.com/en-us/library/aa911351.aspx Any suggestions? Ryan --

Re: [Cegcc-devel] [PATCH] Added more directx stuff to libce.

2009-02-06 Thread Ryan Raasch
lues for enum's etc. correctly (i.e. have a public reference or reverse engineer somehow)? Thanks Ryan Pedro Alves wrote: > On Friday 06 February 2009 12:21:19, Ryan Raasch wrote: >> Hello, > >> This patch copies the Makefile.in, ddraw.def, directx media objects &

Re: [Cegcc-devel] [PATCH] Added more directx stuff to libce.

2009-02-06 Thread Ryan Raasch
Vincent R. wrote: > On Fri, 06 Feb 2009 20:26:54 +0100, Ryan Raasch > wrote: >> Yes. that is one way. The "only" drawback would be swimming through all >> of the ifdef's for WIN and WINCE_VER (can't remember offhand what they >> were). >> &g

Re: [Cegcc-devel] [PATCH] Added more directx stuff to libce.

2009-02-06 Thread Ryan Raasch
Vincent R. wrote: > On Fri, 06 Feb 2009 21:20:59 +0100, Ryan Raasch > wrote: >> Vincent R. wrote: >>> On Fri, 06 Feb 2009 20:26:54 +0100, Ryan Raasch >>> wrote: >>>> Yes. that is one way. The "only" drawback would be swimming through all

[Cegcc-devel] [PATCH] -- strmif.h fixes

2009-02-16 Thread Ryan Raasch
Hello, This patch adds the more interfaces needed for directshow. References found below. http://msdn.microsoft.com/en-us/library/aa926221.aspx http://msdn.microsoft.com/en-us/library/aa926767.aspx Thanks, Ryan >From 655b835043221f328a18fb00df70e26bc5059b59 Mon Sep 17 00:00:00 2001 From: Rya

[Cegcc-devel] [ PATCH ] V2 - Ddraw

2009-02-16 Thread Ryan Raasch
Hello, I have a made another stab at the ddraw inclusion with references here http://msdn.microsoft.com/en-us/library/aa913258.aspx The #defines, however, are not in the ddraw.h header file. They are not publicly displayed. Thanks, Ryan >From c11517e355b40018fcedf9d49f77514b857d44c9 Mon Sep