summaryrefslogtreecommitdiffstats
path: root/tools/globalcode/utility/winutil.h
blob: bfe19ec3c627afbd8f3303a089e49196c22d2e55 (plain) (blame)
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
#ifndef _WINUTIL_H
#define _WINUTIL_H
//-----------------------------------------------------------------------------
// Copyright (C) 2001 Radical Entertainment Ltd.  All rights reserved.
//
// winutil.h
//
// Description: A set of utilities which are specific to the windows development
//              environment.
//
// Modification History:
//  + Created Aug 03, 2001 -- bkusy 
//-----------------------------------------------------------------------------

//----------------------------------------
// System Includes
//----------------------------------------

//----------------------------------------
// Project Includes
//----------------------------------------

//----------------------------------------
// Forward References
//----------------------------------------

#ifdef __cplusplus
extern "C" {
#endif

int winutil_VersionInfo( const char* name, char* info, int info_size );

#ifdef __cplusplus
}
#endif

#endif