#ifndef __CDYSEMUSE_H_ #define __CDYSEMUSE_H_ #ifdef _WINDOWS64 #ifdef PUB_TOOLS_EXPORTS #define PUB_TOOLS_API __declspec(dllexport) #else #define PUB_TOOLS_API __declspec(dllimport) #endif #else #define PUB_TOOLS_API #endif #include "CDySem.h" class PUB_TOOLS_API CDySemUse { public: CDySemUse(CDySem &sem); ~CDySemUse(); private: CDySem &m_Sem; int m_nPflag; int m_nVflag; public: int GetPflag(); int GetVflag(); }; #endif