mirror of
https://github.com/reactos/reactos.git
synced 2025-08-10 08:03:17 +00:00

- Whilst this is non-standard and potentially makes the code less portable, it's supported by both gcc and msvc and should bringg increased compilation speed due to its optimized behaviour (doesn't need to invoke the preprocessor) - Patch by Amine Khaldi [amine.khaldi@reactos.org] svn path=/trunk/; revision=45685
16 lines
338 B
C
16 lines
338 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>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define MAX_INF_STRING_LENGTH 512
|
|
|
|
typedef void *HINF, **PHINF;
|
|
typedef struct _INFCONTEXT *PINFCONTEXT;
|
|
|
|
/* EOF */
|