mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
c501d8112c
svn path=/branches/aicom-network-fixes/; revision=34994
19 lines
418 B
C
19 lines
418 B
C
/*
|
|
* PROJECT: .inf file parser
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PROGRAMMER: Royce Mitchell III
|
|
* Eric Kohl
|
|
* Ge van Geldorp <gvg@reactos.org>
|
|
*/
|
|
|
|
#ifndef INFCOMMON_H_INCLUDED
|
|
#define INFCOMMON_H_INCLUDED
|
|
|
|
#define MAX_INF_STRING_LENGTH 512
|
|
|
|
typedef void *HINF, **PHINF;
|
|
typedef struct _INFCONTEXT *PINFCONTEXT;
|
|
|
|
#endif /* INFCOMMON_H_INCLUDED */
|
|
|
|
/* EOF */
|