Re: [Cegcc-devel] Direct Show location - Console tool

2009-01-27 Thread Danny Backx
On Tue, 2009-01-27 at 09:28 +0100, Ryan Raasch wrote: > 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/direc

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 .def files in src/w32api/libce. So "just" the headers

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

2009-01-27 Thread Eric House
> 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 .def files in src/w32api/libce. So "just" the headers are needed. Ha! I clear

[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

[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] [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

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] 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?