試験的なTTX置き場
リビジョン | 588dff575528765a9e795aa4b18a13f33f6ed7c4 (tree) |
---|---|
日時 | 2017-06-07 16:36:50 |
作者 | IWAMOTO Kouichi <sue@iwmt...> |
コミッター | IWAMOTO Kouichi |
VS2005 でビルド出来るようにした。
@@ -27,6 +27,7 @@ | ||
27 | 27 | #include "tttypes.h" |
28 | 28 | #include "ttplugin.h" |
29 | 29 | #include "tt_res.h" |
30 | +#include "compat_tokeninfo.h" | |
30 | 31 | #include <stdlib.h> |
31 | 32 | #include <stdio.h> |
32 | 33 | #include <windows.h> |
@@ -0,0 +1,11 @@ | ||
1 | +#pragma once | |
2 | + | |
3 | +#if !(_MSC_VER >= 1500) // VC2008より前 -- とりあえずバージョンは適当 | |
4 | + | |
5 | +#define TokenElevation 20 | |
6 | + | |
7 | +typedef struct _TOKEN_ELEVATION { | |
8 | + DWORD TokenIsElevated; | |
9 | +} TOKEN_ELEVATION, *PTOKEN_ELEVATION; | |
10 | + | |
11 | +#endif |