[go: up one dir, main page]

Menu

[r849]: / trunk / VTS3 / StdAfx.h  Maximize  Restore  History

Download this file

56 lines (46 with data), 2.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#if !defined(AFX_STDAFX_H__BDE65082_B82F_11D3_BE52_00A0C95A9812__INCLUDED_)
#define AFX_STDAFX_H__BDE65082_B82F_11D3_BE52_00A0C95A9812__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdisp.h> // MFC Automation classes
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <afxsock.h> // MFC socket extensions
#define _SCB_REPLACE_MINIFRAME
#include "sizecbar.h"
#include "scbarg.h"
#include "scbarcf.h"
#include <afxdlgs.h>
/* Suppress pointless warnings of:
* warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead.
* To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
*/
#pragma warning( disable : 4996 )
// Replacements for character classification functions that can handle ISO-8859-1 character
// values, which appear as values -128 to -1, since char is signed.
// Microsoft's debug versions of the "normal" versions assert on int values >255 or less than 0.
// The release versions index into a table. Either way, we need to deal with it by using
// these replacement functions.
// We find experimentally that sscanf, strtoul, atoi, atof and strtok are safe
int IsSpace( int theChar );
int IsDigit( int theChar );
int IsXDigit( int theChar );
int IsAlpha( int theChar );
int IsAlnum( int theChar );
int IsUpper( int theChar );
int IsLower( int theChar );
int ToUpper( int theChar );
int ToLower( int theChar );
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_STDAFX_H__BDE65082_B82F_11D3_BE52_00A0C95A9812__INCLUDED_)