#ifndef __CDBSEMUSE_H_ #define __CDBSEMUSE_H_ #include "CDbSem.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 class PUB_TOOLS_API CDbSemUse { public: CDbSemUse(CDbSem &sem); ~CDbSemUse(); private: CDbSem &m_Sem; int m_nPflag; int m_nVflag; public: int GetPflag(); int GetVflag(); }; #endif