Doing an evaluation of ASR 3200 (Scan Soft's speech recognition tool for
Windows CE) Thought I would pick the brains out there before I am in over
my head (again):

1. Has anyone used this successfully with .NET CF / C#? I am concerned
about the callbacks required and plan to use the OpenNetCF mechanism?
2. Since the SDK is written for C/C++, I will need to P/Invoke quite a bit.
Is there a good tool for examining the entry points defined on Windows CE
dlls? Is this possible to do?

Any other thoughts?

Re: ASR 3200 by Chris

Chris
Tue Feb 24 16:57:04 CST 2004

For #2 see this:

http://msdn.microsoft.com/mobility/understanding/articles/?pull=/library/en-us/dnnetcomp/html/netcfdumpbinpinvoke.asp

--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
Windows CE Product Manager
Applied Data Systems
www.applieddata.net


"Kevin Hutchison" <kjhutchison@hotmail.com> wrote in message
news:ewcp6My%23DHA.340@tk2msftngp13.phx.gbl...
> Doing an evaluation of ASR 3200 (Scan Soft's speech recognition tool for
> Windows CE) Thought I would pick the brains out there before I am in over
> my head (again):
>
> 1. Has anyone used this successfully with .NET CF / C#? I am concerned
> about the callbacks required and plan to use the OpenNetCF mechanism?
> 2. Since the SDK is written for C/C++, I will need to P/Invoke quite a
bit.
> Is there a good tool for examining the entry points defined on Windows CE
> dlls? Is this possible to do?
>
> Any other thoughts?
>
>



Re: ASR 3200 by Neil

Neil
Wed Feb 25 04:51:36 CST 2004

You can use dumpbin.exe (as Chris suggested) to find the exported
functions from a native DLL, but if you want the complete method
signatures, you're going to need the header file.

--Neil

--
Neil Cowburn, MVP
Co-founder, OpenNETCF.org
Technologist, Content Master Ltd
Microsoft .NET Compact Framework MVP

www.opennetcf.org | www.contentmaster.com


Kevin Hutchison wrote:
> Doing an evaluation of ASR 3200 (Scan Soft's speech recognition tool for
> Windows CE) Thought I would pick the brains out there before I am in over
> my head (again):
>
> 1. Has anyone used this successfully with .NET CF / C#? I am concerned
> about the callbacks required and plan to use the OpenNetCF mechanism?
> 2. Since the SDK is written for C/C++, I will need to P/Invoke quite a bit.
> Is there a good tool for examining the entry points defined on Windows CE
> dlls? Is this possible to do?
>
> Any other thoughts?
>
>

Re: ASR 3200 by Kevin

Kevin
Wed Feb 25 10:15:04 CST 2004

Brilliant!

FYI - Prior to posting, I searched MSDN using "P/invoke compact framework"
Your article did not come up with that search. Chagrined that there was an
MSDN article on this subject already, I played around after you posted. If
"P/Invokes" is substituted for "P/Invoke" in the search string this article
appears first in the list.

Thanks,

- K.





"Chris Tacke, eMVP" <ctacke@spamfree-opennetcf.org> wrote in message
news:%23unhGmy%23DHA.2476@TK2MSFTNGP12.phx.gbl...
> For #2 see this:
>
>
http://msdn.microsoft.com/mobility/understanding/articles/?pull=/library/en-us/dnnetcomp/html/netcfdumpbinpinvoke.asp
>
> --
> Chris Tacke, eMVP
> Co-Founder and Advisory Board Member
> www.OpenNETCF.org
> ---
> Windows CE Product Manager
> Applied Data Systems
> www.applieddata.net
>
>
> "Kevin Hutchison" <kjhutchison@hotmail.com> wrote in message
> news:ewcp6My%23DHA.340@tk2msftngp13.phx.gbl...
> > Doing an evaluation of ASR 3200 (Scan Soft's speech recognition tool for
> > Windows CE) Thought I would pick the brains out there before I am in
over
> > my head (again):
> >
> > 1. Has anyone used this successfully with .NET CF / C#? I am concerned
> > about the callbacks required and plan to use the OpenNetCF mechanism?
> > 2. Since the SDK is written for C/C++, I will need to P/Invoke quite a
> bit.
> > Is there a good tool for examining the entry points defined on Windows
CE
> > dlls? Is this possible to do?
> >
> > Any other thoughts?
> >
> >
>
>



Re: ASR 3200 by Kevin

Kevin
Wed Feb 25 10:20:27 CST 2004

> you're going to need the header file.
Absolutely. I won't get anything to work until I get the structures, etc..
defined. I am a little apprehensive at how involved project is likely to
be... Best to get started then!




"Neil Cowburn [MVP]" <neilc@online.cowburn.me.uk> wrote in message
news:%23wBgY14%23DHA.2476@TK2MSFTNGP12.phx.gbl...
> You can use dumpbin.exe (as Chris suggested) to find the exported
> functions from a native DLL, but if you want the complete method
> signatures, you're going to need the header file.
>
> --Neil
>
> --
> Neil Cowburn, MVP
> Co-founder, OpenNETCF.org
> Technologist, Content Master Ltd
> Microsoft .NET Compact Framework MVP
>
> www.opennetcf.org | www.contentmaster.com
>
>
> Kevin Hutchison wrote:
> > Doing an evaluation of ASR 3200 (Scan Soft's speech recognition tool for
> > Windows CE) Thought I would pick the brains out there before I am in
over
> > my head (again):
> >
> > 1. Has anyone used this successfully with .NET CF / C#? I am concerned
> > about the callbacks required and plan to use the OpenNetCF mechanism?
> > 2. Since the SDK is written for C/C++, I will need to P/Invoke quite a
bit.
> > Is there a good tool for examining the entry points defined on Windows
CE
> > dlls? Is this possible to do?
> >
> > Any other thoughts?
> >
> >



Re: ASR 3200 by Chris

Chris
Wed Feb 25 11:50:34 CST 2004

Yeah, the MSDN search pretty much sucks ass. My recommendation is to use
Google and use a site specific search, so enter something like this:

P/invoke compact framework site:msdn.microsoft.com

--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
Windows CE Product Manager
Applied Data Systems
www.applieddata.net


"Kevin Hutchison" <kjhutchison@hotmail.com> wrote in message
news:eImY6m7%23DHA.2216@TK2MSFTNGP10.phx.gbl...
> Brilliant!
>
> FYI - Prior to posting, I searched MSDN using "P/invoke compact framework"
> Your article did not come up with that search. Chagrined that there was
an
> MSDN article on this subject already, I played around after you posted.
If
> "P/Invokes" is substituted for "P/Invoke" in the search string this
article
> appears first in the list.
>
> Thanks,
>
> - K.
>
>
>
>
>
> "Chris Tacke, eMVP" <ctacke@spamfree-opennetcf.org> wrote in message
> news:%23unhGmy%23DHA.2476@TK2MSFTNGP12.phx.gbl...
> > For #2 see this:
> >
> >
>
http://msdn.microsoft.com/mobility/understanding/articles/?pull=/library/en-us/dnnetcomp/html/netcfdumpbinpinvoke.asp
> >
> > --
> > Chris Tacke, eMVP
> > Co-Founder and Advisory Board Member
> > www.OpenNETCF.org
> > ---
> > Windows CE Product Manager
> > Applied Data Systems
> > www.applieddata.net
> >
> >
> > "Kevin Hutchison" <kjhutchison@hotmail.com> wrote in message
> > news:ewcp6My%23DHA.340@tk2msftngp13.phx.gbl...
> > > Doing an evaluation of ASR 3200 (Scan Soft's speech recognition tool
for
> > > Windows CE) Thought I would pick the brains out there before I am in
> over
> > > my head (again):
> > >
> > > 1. Has anyone used this successfully with .NET CF / C#? I am
concerned
> > > about the callbacks required and plan to use the OpenNetCF mechanism?
> > > 2. Since the SDK is written for C/C++, I will need to P/Invoke quite
a
> > bit.
> > > Is there a good tool for examining the entry points defined on Windows
> CE
> > > dlls? Is this possible to do?
> > >
> > > Any other thoughts?
> > >
> > >
> >
> >
>
>