You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
817 B
39 lines
817 B
// 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_
|