|
|
|
| 1 |
|
/*** |
| 2 |
|
*stdarg.h - defines ANSI-style macros for variable argument functions |
| 3 |
|
* |
| 4 |
|
* Copyright (c) Microsoft Corporation. All rights reserved. |
| 5 |
|
* |
| 6 |
|
*Purpose: |
| 7 |
|
* This file defines ANSI-style macros for accessing arguments |
| 8 |
|
* of functions which take a variable number of arguments. |
| 9 |
|
* [ANSI] |
| 10 |
|
* |
| 11 |
|
* [Public] |
| 12 |
|
* |
| 13 |
|
****/ |
| 14 |
|
|
| 15 |
|
#if _MSC_VER > 1000 |
| 16 |
|
#pragma once |
| 17 |
|
#endif |
| 18 |
|
|
| 19 |
|
#ifndef _INC_STDARG |
| 20 |
|
#define _INC_STDARG |
| 21 |
|
|
| 22 |
|
#if !defined(_WIN32) |
| 23 |
|
#error ERROR: Only Win32 target supported! |