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