AppInstance.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:0k
源码类别:

网格计算

开发平台:

Visual C++

  1. #ifndef _APPINSTANCE_H
  2. #define _APPINSTANCE_H
  3. #include <windows.h>
  4. class CAppInstance  
  5. {
  6. public:
  7. CAppInstance();
  8. virtual ~CAppInstance();
  9. BOOL Exists();
  10. private:
  11. HANDLE m_hAppMutex;
  12. };
  13. #endif // _APPINSTANCE_H