| 1 | /*** | |
| 2 | *all.h | |
| 3 | * | |
| 4 | * Copyright (c) Microsoft Corporation. All rights reserved. | |
| 5 | * | |
| 6 | *Purpose: Header file to include all MSL functionality | |
| 7 | * | |
| 8 | * [Public] | |
| 9 | * | |
| 10 | ****/ | |
| 11 | ||
| 12 | #pragma once | |
| 13 | ||
| 14 | #if !defined(_INC_MSCLR_ALL) | |
| 15 | ||
| 16 | #ifndef __cplusplus_cli | |
| 17 | #error ERROR: msclr libraries are not compatible with /clr:oldSyntax | |
| 18 | #endif |
| Lines 19 ... 24 are skipped. |
| 25 | #include <msclr\gcroot.h> | |
| 26 | #include <msclr\com\ptr.h> | |
| 27 | ||
| 28 | #define _INC_MSCLR_ALL | |
| 29 | ||
| 30 | #endif // _INC_MSCLR_ALL | |
| 31 | ||