From: Daniel Moth on 3 Oct 2006 06:41 What makes you think I've used it? The blog post describes a "roll your own" mechanism that I used on our 4.2 device back then... Check the documentation for further questions: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcecoreos5/html/wce50lrfStartWatchDogTimer.asp Cheers Daniel -- http://www.danielmoth.com/Blog/ "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message news:eM7Dfls5GHA.1200(a)TK2MSFTNGP02.phx.gbl... > Do you have to "trust" your application in some way to use > CreateWatchDogTimer ? > I have seen in your blog that you have used it. Some particular procedure? > > Thanks > > "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio > news:%23RKx%23%23f5GHA.5072(a)TK2MSFTNGP05.phx.gbl... >>> is there smething ready in your knowledge? >> Sorry, not to my knowledge. Since you can't get the functionality OOB, >> implementing it yourself as suggested by my blog entry seems to be the >> only choice... good luck! >> >> Cheers >> Daniel >> -- >> http://www.danielmoth.com/Blog/ >> >> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >> news:%23BMBi7e5GHA.668(a)TK2MSFTNGP02.phx.gbl... >>> Thanks..but i wanted, for one time, to reuse a feature instead of >>> reimplementing it... >>> unfortunately the hardware i'm using (Gotive) seems not to have this >>> api.... >>> >>> is there smething ready in your knowledge? >>> >>> Thx >>> >>> >>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>> news:O9qanbL5GHA.4536(a)TK2MSFTNGP06.phx.gbl... >>>> Also, you may want to check out this for generic watchdog approach >>>> independent of WinCE 5.0: >>>> http://www.danielmoth.com/Blog/2004/12/watchdog-design-for-cf-app.html >>>> >>>> Cheers >>>> Daniel >>>> -- >>>> http://www.danielmoth.com/Blog/ >>>> >>>> "<ctacke/>" <ctacke[@]opennetcf[dot]com> wrote in message >>>> news:OlNQ0K84GHA.512(a)TK2MSFTNGP06.phx.gbl... >>>>> That is 100% depenedent on the hardward. CE 5.0 did add a standard >>>>> KernelIoControl for it, but it's up to the OEM to decide if it is >>>>> implemented or not. If it is implemented, and it is done in >>>>> KernelIoControl, then you simply need to P/Invoke that single API. >>>>> >>>>> >>>>> -- >>>>> Chris Tacke >>>>> OpenNETCF Consulting >>>>> Managed Code in the Embedded World >>>>> www.opennetcf.com >>>>> -- >>>>> >>>>> >>>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>>> news:O5UWct64GHA.932(a)TK2MSFTNGP04.phx.gbl... >>>>>> I'm inetersted in using CreateWatchDogTimer from a CF application. >>>>>> >>>>>> Do someone has the correct PInvoke or class. >>>>>> Is it present on every WINCE 5.0 device? >>>>>> >>>>>> Thanks >>>>>> >>>>> >>>>> >>>> >>> >>> >> > >
From: Enrico Pavesi on 3 Oct 2006 08:45 Yes but when you describe the implementation: >>> 1. The dog itself kicks the hardware watchdog on our unit. So should anything go wrong with that process (effectively should something go wrong in the OS), our unit resets. >>> any way i'have defined the function like this: [DllImport("coredll.dll")] public static extern IntPtr CreateWatchDogTimer(string pszWatchDogName, int dwPeriod, int dwWait, int dwDfltAction, int dwParam, int dwFlags); [DllImport("coredll.dll")] public static extern Boolean StartWatchDogTimer(IntPtr hWatchDog,int dwFlags); [DllImport("coredll.dll")] public static extern Boolean RefreshWatchDogTimer(IntPtr hWatchDog,int dwFlags); At runtime it says Can't find an Entry Point 'CreateWatchDogTimer' in a PInvoke DLL 'coredll.dll'. Does it means is not there? Thanks "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio news:%23f4dIit5GHA.4476(a)TK2MSFTNGP04.phx.gbl... > What makes you think I've used it? The blog post describes a "roll your > own" mechanism that I used on our 4.2 device back then... > > Check the documentation for further questions: > http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcecoreos5/html/wce50lrfStartWatchDogTimer.asp > > Cheers > Daniel > -- > http://www.danielmoth.com/Blog/ > > "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message > news:eM7Dfls5GHA.1200(a)TK2MSFTNGP02.phx.gbl... >> Do you have to "trust" your application in some way to use >> CreateWatchDogTimer ? >> I have seen in your blog that you have used it. Some particular >> procedure? >> >> Thanks >> >> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >> news:%23RKx%23%23f5GHA.5072(a)TK2MSFTNGP05.phx.gbl... >>>> is there smething ready in your knowledge? >>> Sorry, not to my knowledge. Since you can't get the functionality OOB, >>> implementing it yourself as suggested by my blog entry seems to be the >>> only choice... good luck! >>> >>> Cheers >>> Daniel >>> -- >>> http://www.danielmoth.com/Blog/ >>> >>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>> news:%23BMBi7e5GHA.668(a)TK2MSFTNGP02.phx.gbl... >>>> Thanks..but i wanted, for one time, to reuse a feature instead of >>>> reimplementing it... >>>> unfortunately the hardware i'm using (Gotive) seems not to have this >>>> api.... >>>> >>>> is there smething ready in your knowledge? >>>> >>>> Thx >>>> >>>> >>>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>>> news:O9qanbL5GHA.4536(a)TK2MSFTNGP06.phx.gbl... >>>>> Also, you may want to check out this for generic watchdog approach >>>>> independent of WinCE 5.0: >>>>> http://www.danielmoth.com/Blog/2004/12/watchdog-design-for-cf-app.html >>>>> >>>>> Cheers >>>>> Daniel >>>>> -- >>>>> http://www.danielmoth.com/Blog/ >>>>> >>>>> "<ctacke/>" <ctacke[@]opennetcf[dot]com> wrote in message >>>>> news:OlNQ0K84GHA.512(a)TK2MSFTNGP06.phx.gbl... >>>>>> That is 100% depenedent on the hardward. CE 5.0 did add a standard >>>>>> KernelIoControl for it, but it's up to the OEM to decide if it is >>>>>> implemented or not. If it is implemented, and it is done in >>>>>> KernelIoControl, then you simply need to P/Invoke that single API. >>>>>> >>>>>> >>>>>> -- >>>>>> Chris Tacke >>>>>> OpenNETCF Consulting >>>>>> Managed Code in the Embedded World >>>>>> www.opennetcf.com >>>>>> -- >>>>>> >>>>>> >>>>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>>>> news:O5UWct64GHA.932(a)TK2MSFTNGP04.phx.gbl... >>>>>>> I'm inetersted in using CreateWatchDogTimer from a CF application. >>>>>>> >>>>>>> Do someone has the correct PInvoke or class. >>>>>>> Is it present on every WINCE 5.0 device? >>>>>>> >>>>>>> Thanks >>>>>>> >>>>>> >>>>>> >>>>> >>>> >>>> >>> >> >> >
From: " ctacke/>" on 3 Oct 2006 09:43 That's because it's not an exported function of coredll.dll. It's an inline in pkfuncs.h (line 1028 to be exact) that makes a KernelIoControl call passing in a WDAPIStruct. -- Chris Tacke OpenNETCF Consulting Managed Code in the Embedded World www.opennetcf.com -- "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message news:%23hrHKnu5GHA.4644(a)TK2MSFTNGP04.phx.gbl... > Yes but when you describe the implementation: >>>> > 1. The dog itself kicks the hardware watchdog on our unit. So should > anything go wrong with that process (effectively should something go wrong > in the OS), our unit resets. >>>> > > any way i'have defined the function like this: > [DllImport("coredll.dll")] > public static extern IntPtr CreateWatchDogTimer(string > pszWatchDogName, int dwPeriod, int dwWait, int dwDfltAction, int dwParam, > int dwFlags); > [DllImport("coredll.dll")] > public static extern Boolean StartWatchDogTimer(IntPtr > hWatchDog,int dwFlags); > [DllImport("coredll.dll")] > public static extern Boolean RefreshWatchDogTimer(IntPtr > hWatchDog,int dwFlags); > > At runtime it says Can't find an Entry Point 'CreateWatchDogTimer' in a > PInvoke DLL 'coredll.dll'. > > Does it means is not there? > > Thanks > > > "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio > news:%23f4dIit5GHA.4476(a)TK2MSFTNGP04.phx.gbl... >> What makes you think I've used it? The blog post describes a "roll your >> own" mechanism that I used on our 4.2 device back then... >> >> Check the documentation for further questions: >> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcecoreos5/html/wce50lrfStartWatchDogTimer.asp >> >> Cheers >> Daniel >> -- >> http://www.danielmoth.com/Blog/ >> >> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >> news:eM7Dfls5GHA.1200(a)TK2MSFTNGP02.phx.gbl... >>> Do you have to "trust" your application in some way to use >>> CreateWatchDogTimer ? >>> I have seen in your blog that you have used it. Some particular >>> procedure? >>> >>> Thanks >>> >>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>> news:%23RKx%23%23f5GHA.5072(a)TK2MSFTNGP05.phx.gbl... >>>>> is there smething ready in your knowledge? >>>> Sorry, not to my knowledge. Since you can't get the functionality OOB, >>>> implementing it yourself as suggested by my blog entry seems to be the >>>> only choice... good luck! >>>> >>>> Cheers >>>> Daniel >>>> -- >>>> http://www.danielmoth.com/Blog/ >>>> >>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>> news:%23BMBi7e5GHA.668(a)TK2MSFTNGP02.phx.gbl... >>>>> Thanks..but i wanted, for one time, to reuse a feature instead of >>>>> reimplementing it... >>>>> unfortunately the hardware i'm using (Gotive) seems not to have this >>>>> api.... >>>>> >>>>> is there smething ready in your knowledge? >>>>> >>>>> Thx >>>>> >>>>> >>>>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>>>> news:O9qanbL5GHA.4536(a)TK2MSFTNGP06.phx.gbl... >>>>>> Also, you may want to check out this for generic watchdog approach >>>>>> independent of WinCE 5.0: >>>>>> http://www.danielmoth.com/Blog/2004/12/watchdog-design-for-cf-app.html >>>>>> >>>>>> Cheers >>>>>> Daniel >>>>>> -- >>>>>> http://www.danielmoth.com/Blog/ >>>>>> >>>>>> "<ctacke/>" <ctacke[@]opennetcf[dot]com> wrote in message >>>>>> news:OlNQ0K84GHA.512(a)TK2MSFTNGP06.phx.gbl... >>>>>>> That is 100% depenedent on the hardward. CE 5.0 did add a standard >>>>>>> KernelIoControl for it, but it's up to the OEM to decide if it is >>>>>>> implemented or not. If it is implemented, and it is done in >>>>>>> KernelIoControl, then you simply need to P/Invoke that single API. >>>>>>> >>>>>>> >>>>>>> -- >>>>>>> Chris Tacke >>>>>>> OpenNETCF Consulting >>>>>>> Managed Code in the Embedded World >>>>>>> www.opennetcf.com >>>>>>> -- >>>>>>> >>>>>>> >>>>>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>>>>> news:O5UWct64GHA.932(a)TK2MSFTNGP04.phx.gbl... >>>>>>>> I'm inetersted in using CreateWatchDogTimer from a CF application. >>>>>>>> >>>>>>>> Do someone has the correct PInvoke or class. >>>>>>>> Is it present on every WINCE 5.0 device? >>>>>>>> >>>>>>>> Thanks >>>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>> >>>>> >>>> >>> >>> >> > >
From: Enrico Pavesi on 3 Oct 2006 12:57 Thanks .... one last thing...can someone send the pkfuncs.h of CE 5.0 Thanks again "<ctacke/>" <ctacke[@]opennetcf[dot]com> ha scritto nel messaggio news:ug3LUIv5GHA.3836(a)TK2MSFTNGP06.phx.gbl... > That's because it's not an exported function of coredll.dll. It's an > inline in pkfuncs.h (line 1028 to be exact) that makes a KernelIoControl > call passing in a WDAPIStruct. > > > -- > Chris Tacke > OpenNETCF Consulting > Managed Code in the Embedded World > www.opennetcf.com > -- > > > > > "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message > news:%23hrHKnu5GHA.4644(a)TK2MSFTNGP04.phx.gbl... >> Yes but when you describe the implementation: >>>>> >> 1. The dog itself kicks the hardware watchdog on our unit. So should >> anything go wrong with that process (effectively should something go >> wrong in the OS), our unit resets. >>>>> >> >> any way i'have defined the function like this: >> [DllImport("coredll.dll")] >> public static extern IntPtr CreateWatchDogTimer(string >> pszWatchDogName, int dwPeriod, int dwWait, int dwDfltAction, int dwParam, >> int dwFlags); >> [DllImport("coredll.dll")] >> public static extern Boolean StartWatchDogTimer(IntPtr >> hWatchDog,int dwFlags); >> [DllImport("coredll.dll")] >> public static extern Boolean RefreshWatchDogTimer(IntPtr >> hWatchDog,int dwFlags); >> >> At runtime it says Can't find an Entry Point 'CreateWatchDogTimer' in a >> PInvoke DLL 'coredll.dll'. >> >> Does it means is not there? >> >> Thanks >> >> >> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >> news:%23f4dIit5GHA.4476(a)TK2MSFTNGP04.phx.gbl... >>> What makes you think I've used it? The blog post describes a "roll your >>> own" mechanism that I used on our 4.2 device back then... >>> >>> Check the documentation for further questions: >>> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcecoreos5/html/wce50lrfStartWatchDogTimer.asp >>> >>> Cheers >>> Daniel >>> -- >>> http://www.danielmoth.com/Blog/ >>> >>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>> news:eM7Dfls5GHA.1200(a)TK2MSFTNGP02.phx.gbl... >>>> Do you have to "trust" your application in some way to use >>>> CreateWatchDogTimer ? >>>> I have seen in your blog that you have used it. Some particular >>>> procedure? >>>> >>>> Thanks >>>> >>>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>>> news:%23RKx%23%23f5GHA.5072(a)TK2MSFTNGP05.phx.gbl... >>>>>> is there smething ready in your knowledge? >>>>> Sorry, not to my knowledge. Since you can't get the functionality OOB, >>>>> implementing it yourself as suggested by my blog entry seems to be the >>>>> only choice... good luck! >>>>> >>>>> Cheers >>>>> Daniel >>>>> -- >>>>> http://www.danielmoth.com/Blog/ >>>>> >>>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>>> news:%23BMBi7e5GHA.668(a)TK2MSFTNGP02.phx.gbl... >>>>>> Thanks..but i wanted, for one time, to reuse a feature instead of >>>>>> reimplementing it... >>>>>> unfortunately the hardware i'm using (Gotive) seems not to have this >>>>>> api.... >>>>>> >>>>>> is there smething ready in your knowledge? >>>>>> >>>>>> Thx >>>>>> >>>>>> >>>>>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>>>>> news:O9qanbL5GHA.4536(a)TK2MSFTNGP06.phx.gbl... >>>>>>> Also, you may want to check out this for generic watchdog approach >>>>>>> independent of WinCE 5.0: >>>>>>> http://www.danielmoth.com/Blog/2004/12/watchdog-design-for-cf-app.html >>>>>>> >>>>>>> Cheers >>>>>>> Daniel >>>>>>> -- >>>>>>> http://www.danielmoth.com/Blog/ >>>>>>> >>>>>>> "<ctacke/>" <ctacke[@]opennetcf[dot]com> wrote in message >>>>>>> news:OlNQ0K84GHA.512(a)TK2MSFTNGP06.phx.gbl... >>>>>>>> That is 100% depenedent on the hardward. CE 5.0 did add a standard >>>>>>>> KernelIoControl for it, but it's up to the OEM to decide if it is >>>>>>>> implemented or not. If it is implemented, and it is done in >>>>>>>> KernelIoControl, then you simply need to P/Invoke that single API. >>>>>>>> >>>>>>>> >>>>>>>> -- >>>>>>>> Chris Tacke >>>>>>>> OpenNETCF Consulting >>>>>>>> Managed Code in the Embedded World >>>>>>>> www.opennetcf.com >>>>>>>> -- >>>>>>>> >>>>>>>> >>>>>>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>>>>>> news:O5UWct64GHA.932(a)TK2MSFTNGP04.phx.gbl... >>>>>>>>> I'm inetersted in using CreateWatchDogTimer from a CF >>>>>>>>> application. >>>>>>>>> >>>>>>>>> Do someone has the correct PInvoke or class. >>>>>>>>> Is it present on every WINCE 5.0 device? >>>>>>>>> >>>>>>>>> Thanks >>>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>> >>>>>> >>>>> >>>> >>>> >>> >> >> > >
From: "Paul G. Tobey [eMVP]" p space tobey no spam AT no instrument no spam DOT on 3 Oct 2006 13:02 Legally, no. That's a violation of the license, as I read it, anyway. You can download the Windows CE 5.0 Evaluation Edition with Platform Builder from www.microsoft.com/downloads and get it from there (you'll have to read the license and interpret if using a file received *that* way is OK or not; hope you're a lawyer). Paul T. "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message news:u6V9I0w5GHA.4608(a)TK2MSFTNGP03.phx.gbl... > Thanks .... > one last thing...can someone send the pkfuncs.h of CE 5.0 > > Thanks again > > "<ctacke/>" <ctacke[@]opennetcf[dot]com> ha scritto nel messaggio > news:ug3LUIv5GHA.3836(a)TK2MSFTNGP06.phx.gbl... >> That's because it's not an exported function of coredll.dll. It's an >> inline in pkfuncs.h (line 1028 to be exact) that makes a KernelIoControl >> call passing in a WDAPIStruct. >> >> >> -- >> Chris Tacke >> OpenNETCF Consulting >> Managed Code in the Embedded World >> www.opennetcf.com >> -- >> >> >> >> >> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >> news:%23hrHKnu5GHA.4644(a)TK2MSFTNGP04.phx.gbl... >>> Yes but when you describe the implementation: >>>>>> >>> 1. The dog itself kicks the hardware watchdog on our unit. So should >>> anything go wrong with that process (effectively should something go >>> wrong in the OS), our unit resets. >>>>>> >>> >>> any way i'have defined the function like this: >>> [DllImport("coredll.dll")] >>> public static extern IntPtr CreateWatchDogTimer(string >>> pszWatchDogName, int dwPeriod, int dwWait, int dwDfltAction, int >>> dwParam, int dwFlags); >>> [DllImport("coredll.dll")] >>> public static extern Boolean StartWatchDogTimer(IntPtr >>> hWatchDog,int dwFlags); >>> [DllImport("coredll.dll")] >>> public static extern Boolean RefreshWatchDogTimer(IntPtr >>> hWatchDog,int dwFlags); >>> >>> At runtime it says Can't find an Entry Point 'CreateWatchDogTimer' in a >>> PInvoke DLL 'coredll.dll'. >>> >>> Does it means is not there? >>> >>> Thanks >>> >>> >>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>> news:%23f4dIit5GHA.4476(a)TK2MSFTNGP04.phx.gbl... >>>> What makes you think I've used it? The blog post describes a "roll your >>>> own" mechanism that I used on our 4.2 device back then... >>>> >>>> Check the documentation for further questions: >>>> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcecoreos5/html/wce50lrfStartWatchDogTimer.asp >>>> >>>> Cheers >>>> Daniel >>>> -- >>>> http://www.danielmoth.com/Blog/ >>>> >>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>> news:eM7Dfls5GHA.1200(a)TK2MSFTNGP02.phx.gbl... >>>>> Do you have to "trust" your application in some way to use >>>>> CreateWatchDogTimer ? >>>>> I have seen in your blog that you have used it. Some particular >>>>> procedure? >>>>> >>>>> Thanks >>>>> >>>>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>>>> news:%23RKx%23%23f5GHA.5072(a)TK2MSFTNGP05.phx.gbl... >>>>>>> is there smething ready in your knowledge? >>>>>> Sorry, not to my knowledge. Since you can't get the functionality >>>>>> OOB, implementing it yourself as suggested by my blog entry seems to >>>>>> be the only choice... good luck! >>>>>> >>>>>> Cheers >>>>>> Daniel >>>>>> -- >>>>>> http://www.danielmoth.com/Blog/ >>>>>> >>>>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>>>> news:%23BMBi7e5GHA.668(a)TK2MSFTNGP02.phx.gbl... >>>>>>> Thanks..but i wanted, for one time, to reuse a feature instead of >>>>>>> reimplementing it... >>>>>>> unfortunately the hardware i'm using (Gotive) seems not to have this >>>>>>> api.... >>>>>>> >>>>>>> is there smething ready in your knowledge? >>>>>>> >>>>>>> Thx >>>>>>> >>>>>>> >>>>>>> "Daniel Moth" <dmoth74(a)hotmail.com> ha scritto nel messaggio >>>>>>> news:O9qanbL5GHA.4536(a)TK2MSFTNGP06.phx.gbl... >>>>>>>> Also, you may want to check out this for generic watchdog approach >>>>>>>> independent of WinCE 5.0: >>>>>>>> http://www.danielmoth.com/Blog/2004/12/watchdog-design-for-cf-app.html >>>>>>>> >>>>>>>> Cheers >>>>>>>> Daniel >>>>>>>> -- >>>>>>>> http://www.danielmoth.com/Blog/ >>>>>>>> >>>>>>>> "<ctacke/>" <ctacke[@]opennetcf[dot]com> wrote in message >>>>>>>> news:OlNQ0K84GHA.512(a)TK2MSFTNGP06.phx.gbl... >>>>>>>>> That is 100% depenedent on the hardward. CE 5.0 did add a >>>>>>>>> standard KernelIoControl for it, but it's up to the OEM to decide >>>>>>>>> if it is implemented or not. If it is implemented, and it is done >>>>>>>>> in KernelIoControl, then you simply need to P/Invoke that single >>>>>>>>> API. >>>>>>>>> >>>>>>>>> >>>>>>>>> -- >>>>>>>>> Chris Tacke >>>>>>>>> OpenNETCF Consulting >>>>>>>>> Managed Code in the Embedded World >>>>>>>>> www.opennetcf.com >>>>>>>>> -- >>>>>>>>> >>>>>>>>> >>>>>>>>> "Enrico Pavesi" <nxpavesi(a)tin.it> wrote in message >>>>>>>>> news:O5UWct64GHA.932(a)TK2MSFTNGP04.phx.gbl... >>>>>>>>>> I'm inetersted in using CreateWatchDogTimer from a CF >>>>>>>>>> application. >>>>>>>>>> >>>>>>>>>> Do someone has the correct PInvoke or class. >>>>>>>>>> Is it present on every WINCE 5.0 device? >>>>>>>>>> >>>>>>>>>> Thanks >>>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>> >>>>> >>>> >>> >>> >> >> > >
First
|
Prev
|
Next
|
Last
Pages: 1 2 3 Prev: CreateWatchDogTimer in CF Next: DateTime as SqlCeCommand parameter throws exception :( |