PC Review


Reply
Thread Tools Rate Thread

What are counterpart methods in XP embedded?

 
 
=?Utf-8?B?ZGVuIDIwMDU=?=
Guest
Posts: n/a
 
      2nd Dec 2005
Hi everybody,
What are the methods that is a counterpart of these methods in
coredll.dll of Windows CE in Windows XP embedded?

Code:
[DllImport("coredll.dll", EntryPoint="RasDial", SetLastError=true)]
public static extern uint RasDial(int dialExtensions,string
phoneBookPath,byte[] rasDialParam, int NotifierType,int notifier,ref int
pRasConn);

[DllImport("coredll.dll", EntryPoint="RasHangUp", SetLastError=true)]
public static extern uint RasHangUp(int Session);

[DllImport("coredll.dll", EntryPoint="RasSetEntryProperties",
CharSet=CharSet.Unicode, SetLastError=true)]
public static extern uint RasSetEntryProperties(string lpszPhoneBook, string
szEntry, byte[] lpEntry,uint dwEntrySize, byte[] lpb, uint dwSize);

[DllImport("coredll.dll", EntryPoint="RasGetEntryProperties",
CharSet=CharSet.Unicode, SetLastError=true)]
public static extern uint RasGetEntryProperties(string lpszPhoneBook, string
lpszEntry, byte[] lpEntry,ref uint lpdwEntrySize, byte[] lpb, ref uint
lpdwSize);

[DllImport("coredll.dll", EntryPoint="WaveOutSetVolume", SetLastError=true)]
public static extern int WaveOutSetVolume(IntPtr uDeviceID, uint lpdwVolume);

Also, how would manipulate the audio (volume) and turning off the tablet pc?
Wha are methods of which api? Is the name of api to manipulate these hardware
devices "winxpapi.dll" ? Thanks

den2005

--
MCP Year 2005, Philippines
 
Reply With Quote
 
 
 
 
Daniel Moth
Guest
Posts: n/a
 
      3rd Dec 2005
Why don't you try the xpe ng? This is a netcf group and even if you dotnet
development on xpe, you would be using the full framework.

Cheers
Daniel
--
http://www.danielmoth.com/Blog/

"den 2005" <(E-Mail Removed)> wrote in message
news:4722534A-0E94-45AB-909C-(E-Mail Removed)...
> Hi everybody,
> What are the methods that is a counterpart of these methods in
> coredll.dll of Windows CE in Windows XP embedded?
>
> Code:
> [DllImport("coredll.dll", EntryPoint="RasDial", SetLastError=true)]
> public static extern uint RasDial(int dialExtensions,string
> phoneBookPath,byte[] rasDialParam, int NotifierType,int notifier,ref int
> pRasConn);
>
> [DllImport("coredll.dll", EntryPoint="RasHangUp", SetLastError=true)]
> public static extern uint RasHangUp(int Session);
>
> [DllImport("coredll.dll", EntryPoint="RasSetEntryProperties",
> CharSet=CharSet.Unicode, SetLastError=true)]
> public static extern uint RasSetEntryProperties(string lpszPhoneBook,
> string
> szEntry, byte[] lpEntry,uint dwEntrySize, byte[] lpb, uint dwSize);
>
> [DllImport("coredll.dll", EntryPoint="RasGetEntryProperties",
> CharSet=CharSet.Unicode, SetLastError=true)]
> public static extern uint RasGetEntryProperties(string lpszPhoneBook,
> string
> lpszEntry, byte[] lpEntry,ref uint lpdwEntrySize, byte[] lpb, ref uint
> lpdwSize);
>
> [DllImport("coredll.dll", EntryPoint="WaveOutSetVolume",
> SetLastError=true)]
> public static extern int WaveOutSetVolume(IntPtr uDeviceID, uint
> lpdwVolume);
>
> Also, how would manipulate the audio (volume) and turning off the tablet
> pc?
> Wha are methods of which api? Is the name of api to manipulate these
> hardware
> devices "winxpapi.dll" ? Thanks
>
> den2005
>
> --
> MCP Year 2005, Philippines



 
Reply With Quote
 
Daniel Moth
Guest
Posts: n/a
 
      3rd Dec 2005
Why don't you try the xpe ng? This is a netcf group and even if you dotnet
development on xpe, you would be using the full framework.

Cheers
Daniel
--
http://www.danielmoth.com/Blog/

"den 2005" <(E-Mail Removed)> wrote in message
news:4722534A-0E94-45AB-909C-(E-Mail Removed)...
> Hi everybody,
> What are the methods that is a counterpart of these methods in
> coredll.dll of Windows CE in Windows XP embedded?
>
> Code:
> [DllImport("coredll.dll", EntryPoint="RasDial", SetLastError=true)]
> public static extern uint RasDial(int dialExtensions,string
> phoneBookPath,byte[] rasDialParam, int NotifierType,int notifier,ref int
> pRasConn);
>
> [DllImport("coredll.dll", EntryPoint="RasHangUp", SetLastError=true)]
> public static extern uint RasHangUp(int Session);
>
> [DllImport("coredll.dll", EntryPoint="RasSetEntryProperties",
> CharSet=CharSet.Unicode, SetLastError=true)]
> public static extern uint RasSetEntryProperties(string lpszPhoneBook,
> string
> szEntry, byte[] lpEntry,uint dwEntrySize, byte[] lpb, uint dwSize);
>
> [DllImport("coredll.dll", EntryPoint="RasGetEntryProperties",
> CharSet=CharSet.Unicode, SetLastError=true)]
> public static extern uint RasGetEntryProperties(string lpszPhoneBook,
> string
> lpszEntry, byte[] lpEntry,ref uint lpdwEntrySize, byte[] lpb, ref uint
> lpdwSize);
>
> [DllImport("coredll.dll", EntryPoint="WaveOutSetVolume",
> SetLastError=true)]
> public static extern int WaveOutSetVolume(IntPtr uDeviceID, uint
> lpdwVolume);
>
> Also, how would manipulate the audio (volume) and turning off the tablet
> pc?
> Wha are methods of which api? Is the name of api to manipulate these
> hardware
> devices "winxpapi.dll" ? Thanks
>
> den2005
>
> --
> MCP Year 2005, Philippines



 
Reply With Quote
 
=?Utf-8?B?ZGVuIDIwMDU=?=
Guest
Posts: n/a
 
      5th Dec 2005
Thanks for reply, Daniel. what is xpe ng? I am trying to search for
appropriate counterpart for coredll.dll which is use in CE in Xp Embedded,
and also the methods.

den2005

--
MCP Year 2005, Philippines


"Daniel Moth" wrote:

> Why don't you try the xpe ng? This is a netcf group and even if you dotnet
> development on xpe, you would be using the full framework.
>
> Cheers
> Daniel
> --
> http://www.danielmoth.com/Blog/
>
> "den 2005" <(E-Mail Removed)> wrote in message
> news:4722534A-0E94-45AB-909C-(E-Mail Removed)...
> > Hi everybody,
> > What are the methods that is a counterpart of these methods in
> > coredll.dll of Windows CE in Windows XP embedded?
> >
> > Code:
> > [DllImport("coredll.dll", EntryPoint="RasDial", SetLastError=true)]
> > public static extern uint RasDial(int dialExtensions,string
> > phoneBookPath,byte[] rasDialParam, int NotifierType,int notifier,ref int
> > pRasConn);
> >
> > [DllImport("coredll.dll", EntryPoint="RasHangUp", SetLastError=true)]
> > public static extern uint RasHangUp(int Session);
> >
> > [DllImport("coredll.dll", EntryPoint="RasSetEntryProperties",
> > CharSet=CharSet.Unicode, SetLastError=true)]
> > public static extern uint RasSetEntryProperties(string lpszPhoneBook,
> > string
> > szEntry, byte[] lpEntry,uint dwEntrySize, byte[] lpb, uint dwSize);
> >
> > [DllImport("coredll.dll", EntryPoint="RasGetEntryProperties",
> > CharSet=CharSet.Unicode, SetLastError=true)]
> > public static extern uint RasGetEntryProperties(string lpszPhoneBook,
> > string
> > lpszEntry, byte[] lpEntry,ref uint lpdwEntrySize, byte[] lpb, ref uint
> > lpdwSize);
> >
> > [DllImport("coredll.dll", EntryPoint="WaveOutSetVolume",
> > SetLastError=true)]
> > public static extern int WaveOutSetVolume(IntPtr uDeviceID, uint
> > lpdwVolume);
> >
> > Also, how would manipulate the audio (volume) and turning off the tablet
> > pc?
> > Wha are methods of which api? Is the name of api to manipulate these
> > hardware
> > devices "winxpapi.dll" ? Thanks
> >
> > den2005
> >
> > --
> > MCP Year 2005, Philippines

>
>
>

 
Reply With Quote
 
Daniel Moth
Guest
Posts: n/a
 
      5th Dec 2005
Here is one:
http://groups.google.com/group/micro...owsxp.embedded

Cheers
Daniel
--
http://www.danielmoth.com/Blog/

"den 2005" <(E-Mail Removed)> wrote in message
news:11E492E0-B507-4603-844D-(E-Mail Removed)...
> Thanks for reply, Daniel. what is xpe ng? I am trying to search for
> appropriate counterpart for coredll.dll which is use in CE in Xp Embedded,
> and also the methods.
>
> den2005
>
> --
> MCP Year 2005, Philippines
>
>
> "Daniel Moth" wrote:
>
>> Why don't you try the xpe ng? This is a netcf group and even if you
>> dotnet
>> development on xpe, you would be using the full framework.
>>
>> Cheers
>> Daniel
>> --
>> http://www.danielmoth.com/Blog/
>>
>> "den 2005" <(E-Mail Removed)> wrote in message
>> news:4722534A-0E94-45AB-909C-(E-Mail Removed)...
>> > Hi everybody,
>> > What are the methods that is a counterpart of these methods in
>> > coredll.dll of Windows CE in Windows XP embedded?
>> >
>> > Code:
>> > [DllImport("coredll.dll", EntryPoint="RasDial", SetLastError=true)]
>> > public static extern uint RasDial(int dialExtensions,string
>> > phoneBookPath,byte[] rasDialParam, int NotifierType,int notifier,ref
>> > int
>> > pRasConn);
>> >
>> > [DllImport("coredll.dll", EntryPoint="RasHangUp", SetLastError=true)]
>> > public static extern uint RasHangUp(int Session);
>> >
>> > [DllImport("coredll.dll", EntryPoint="RasSetEntryProperties",
>> > CharSet=CharSet.Unicode, SetLastError=true)]
>> > public static extern uint RasSetEntryProperties(string lpszPhoneBook,
>> > string
>> > szEntry, byte[] lpEntry,uint dwEntrySize, byte[] lpb, uint dwSize);
>> >
>> > [DllImport("coredll.dll", EntryPoint="RasGetEntryProperties",
>> > CharSet=CharSet.Unicode, SetLastError=true)]
>> > public static extern uint RasGetEntryProperties(string lpszPhoneBook,
>> > string
>> > lpszEntry, byte[] lpEntry,ref uint lpdwEntrySize, byte[] lpb, ref uint
>> > lpdwSize);
>> >
>> > [DllImport("coredll.dll", EntryPoint="WaveOutSetVolume",
>> > SetLastError=true)]
>> > public static extern int WaveOutSetVolume(IntPtr uDeviceID, uint
>> > lpdwVolume);
>> >
>> > Also, how would manipulate the audio (volume) and turning off the
>> > tablet
>> > pc?
>> > Wha are methods of which api? Is the name of api to manipulate these
>> > hardware
>> > devices "winxpapi.dll" ? Thanks
>> >
>> > den2005
>> >
>> > --
>> > MCP Year 2005, Philippines

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?ZGVuIDIwMDU=?=
Guest
Posts: n/a
 
      6th Dec 2005
I have to look all sub-links. thanks for reply, Daniel. Hopefully I found
what I needed to make it work. I reply again.

den2005

--
MCP Year 2005, Philippines


"Daniel Moth" wrote:

> Here is one:
> http://groups.google.com/group/micro...owsxp.embedded
>
> Cheers
> Daniel
> --
> http://www.danielmoth.com/Blog/
>
> "den 2005" <(E-Mail Removed)> wrote in message
> news:11E492E0-B507-4603-844D-(E-Mail Removed)...
> > Thanks for reply, Daniel. what is xpe ng? I am trying to search for
> > appropriate counterpart for coredll.dll which is use in CE in Xp Embedded,
> > and also the methods.
> >
> > den2005
> >
> > --
> > MCP Year 2005, Philippines
> >
> >
> > "Daniel Moth" wrote:
> >
> >> Why don't you try the xpe ng? This is a netcf group and even if you
> >> dotnet
> >> development on xpe, you would be using the full framework.
> >>
> >> Cheers
> >> Daniel
> >> --
> >> http://www.danielmoth.com/Blog/
> >>
> >> "den 2005" <(E-Mail Removed)> wrote in message
> >> news:4722534A-0E94-45AB-909C-(E-Mail Removed)...
> >> > Hi everybody,
> >> > What are the methods that is a counterpart of these methods in
> >> > coredll.dll of Windows CE in Windows XP embedded?
> >> >
> >> > Code:
> >> > [DllImport("coredll.dll", EntryPoint="RasDial", SetLastError=true)]
> >> > public static extern uint RasDial(int dialExtensions,string
> >> > phoneBookPath,byte[] rasDialParam, int NotifierType,int notifier,ref
> >> > int
> >> > pRasConn);
> >> >
> >> > [DllImport("coredll.dll", EntryPoint="RasHangUp", SetLastError=true)]
> >> > public static extern uint RasHangUp(int Session);
> >> >
> >> > [DllImport("coredll.dll", EntryPoint="RasSetEntryProperties",
> >> > CharSet=CharSet.Unicode, SetLastError=true)]
> >> > public static extern uint RasSetEntryProperties(string lpszPhoneBook,
> >> > string
> >> > szEntry, byte[] lpEntry,uint dwEntrySize, byte[] lpb, uint dwSize);
> >> >
> >> > [DllImport("coredll.dll", EntryPoint="RasGetEntryProperties",
> >> > CharSet=CharSet.Unicode, SetLastError=true)]
> >> > public static extern uint RasGetEntryProperties(string lpszPhoneBook,
> >> > string
> >> > lpszEntry, byte[] lpEntry,ref uint lpdwEntrySize, byte[] lpb, ref uint
> >> > lpdwSize);
> >> >
> >> > [DllImport("coredll.dll", EntryPoint="WaveOutSetVolume",
> >> > SetLastError=true)]
> >> > public static extern int WaveOutSetVolume(IntPtr uDeviceID, uint
> >> > lpdwVolume);
> >> >
> >> > Also, how would manipulate the audio (volume) and turning off the
> >> > tablet
> >> > pc?
> >> > Wha are methods of which api? Is the name of api to manipulate these
> >> > hardware
> >> > devices "winxpapi.dll" ? Thanks
> >> >
> >> > den2005
> >> >
> >> > --
> >> > MCP Year 2005, Philippines
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Methods for auto-starting embedded application news@rblack01.plus.com Windows XP Embedded 4 11th Oct 2008 09:06 PM
What are Coredll.dll methods of CE in XP Embedded? =?Utf-8?B?ZGVuIDIwMDU=?= Windows XP Embedded 1 2nd Dec 2005 03:09 PM
What is counterpart dll methods in XP embedded for coredll.dll in =?Utf-8?B?ZGVuIDIwMDU=?= Windows XP Embedded 1 2nd Dec 2005 03:05 PM
GUI-dll counterpart PPCtech Microsoft Dot NET 1 27th Aug 2004 10:19 AM
counterpart =?Utf-8?B?ZGltd2l0?= Microsoft Access VBA Modules 1 16th Jun 2004 10:55 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:42 PM.