2025-04-27 07:49:33 -04:00

40 lines
817 B
C++

// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently,
// but are changed infrequently
#pragma once
#ifndef _STDAFX_H_
#define _STDAFX_H_
#define STRICT
#include <atlbase.h>
#include <mtx.h>
//You may derive a class from CComModule and use it if you want to override
//something, but do not change the name of _Module
class CContRotModule : public CComModule
{
public:
LONG Lock();
LONG Unlock();
private:
CComAutoCriticalSection m_cs;
};
extern CContRotModule _Module;
#include <algorithm>
using namespace std;
#include <atlcom.h>
#include "mystring.h"
#include "strmap.h"
#include "myvector.h"
#include "mydebug.h"
#define ARRAYSIZE(a) (sizeof(a)/sizeof(*(a)))
#endif // !_STDAFX_H_