Click here to Skip to main content
15,897,371 members
Articles / Mobile Apps / Windows Mobile

Task Manager for Windows Mobile and Windows CE

Rate me:
Please Sign up or sign in to vote.
4.51/5 (23 votes)
30 Nov 2008CPOL10 min read 112.9K   7.3K   79  
Source code for writing your own Task Manager for Windows Mobile or Windows CE based devices
#ifndef I_WINDOWS_AUTOCRITICALSECTION_H
#define I_WINDOWS_AUTOCRITICALSECTION_H

#include <windows.h>

namespace Windows
{
    class AutoCriticalSection;

    class CriticalSection
    {
    friend AutoCriticalSection;
    public:
        CriticalSection();
        ~CriticalSection();

    protected:
        void Lock();
        void Unlock();

    private:
        CRITICAL_SECTION    m_criticalsection;
    };

    class AutoCriticalSection
    {
    public:
        AutoCriticalSection(CriticalSection& criticalsection);
        ~AutoCriticalSection();
    protected:
        AutoCriticalSection();
        AutoCriticalSection(const AutoCriticalSection& other); // Prevent copying
        AutoCriticalSection& operator = (const AutoCriticalSection& other);  // Prevent assigning

    private:
        CriticalSection&    m_criticalsection;
    };
} // namespace Windows

#endif // I_WINDOWS_AUTOCRITICALSECTION_H

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Belgium Belgium
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions