00001
00010
00011
00012 #if !defined(__VCCSTUB_H__INCLUDED)
00013 #define __VCCSTUB_H__INCLUDED
00014
00015 #if _MSC_VER > 1000
00016 #pragma once
00017 #endif // _MSC_VER > 1000
00018
00019 #if !defined(WINVER)
00020 #define WINVER 0x0400
00021 #endif
00022
00023 #if !defined(_WIN32_WINNT)
00024 #define _WIN32_WINNT 0x0400
00025 #endif
00026
00027
00028 #if defined(UNICODE)
00029 #if !defined(_UNICODE)
00030 #define _UNICODE
00031 #endif
00032 #elif defined(_UNICODE)
00033 #if !defined(UNICODE)
00034 #define UNICODE
00035 #endif
00036 #else
00037 #error vccStub.lib is compiled for Unicode only.
00038 #endif
00039
00040 #include <windows.h>
00041 #include <tchar.h>
00042
00043
00044
00045 #ifndef PCTSTR
00046 typedef const TCHAR *PCTSTR;
00047 #endif
00048 #ifndef PTSTR
00049 typedef TCHAR *PTSTR;
00050 #endif
00051
00052
00053
00054 #include "win2vcc.h"
00055
00056 #include "mouseMessage.h"
00057
00058 #include "MouseClient.h"
00059 #include "ScreenClient.h"
00060
00061 #endif