mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
[NEWINFLIB]
PINT -> INT* svn path=/trunk/; revision=48252
This commit is contained in:
parent
371d1d1546
commit
461b4ab969
5 changed files with 5 additions and 5 deletions
|
@ -416,7 +416,7 @@ InfpGetBinaryField(PINFCONTEXT Context,
|
|||
INFSTATUS
|
||||
InfpGetIntField(PINFCONTEXT Context,
|
||||
ULONG FieldIndex,
|
||||
PINT IntegerValue)
|
||||
INT *IntegerValue)
|
||||
{
|
||||
PINFCACHELINE CacheLine;
|
||||
PINFCACHEFIELD CacheField;
|
||||
|
|
|
@ -138,7 +138,7 @@ InfHostGetBinaryField(PINFCONTEXT Context,
|
|||
int
|
||||
InfHostGetIntField(PINFCONTEXT Context,
|
||||
ULONG FieldIndex,
|
||||
PINT IntegerValue)
|
||||
INT *IntegerValue)
|
||||
{
|
||||
INFSTATUS Status;
|
||||
|
||||
|
|
|
@ -116,7 +116,7 @@ extern INFSTATUS InfpGetBinaryField(PINFCONTEXT Context,
|
|||
PULONG RequiredSize);
|
||||
extern INFSTATUS InfpGetIntField(PINFCONTEXT Context,
|
||||
ULONG FieldIndex,
|
||||
PINT IntegerValue);
|
||||
INT *IntegerValue);
|
||||
extern INFSTATUS InfpGetMultiSzField(PINFCONTEXT Context,
|
||||
ULONG FieldIndex,
|
||||
PWSTR ReturnBuffer,
|
||||
|
|
|
@ -50,7 +50,7 @@ extern BOOLEAN InfGetBinaryField(PINFCONTEXT Context,
|
|||
PULONG RequiredSize);
|
||||
extern BOOLEAN InfGetIntField(PINFCONTEXT Context,
|
||||
ULONG FieldIndex,
|
||||
PINT IntegerValue);
|
||||
INT *IntegerValue);
|
||||
extern BOOLEAN InfGetMultiSzField(PINFCONTEXT Context,
|
||||
ULONG FieldIndex,
|
||||
PWSTR ReturnBuffer,
|
||||
|
|
|
@ -84,7 +84,7 @@ InfGetBinaryField(PINFCONTEXT Context,
|
|||
BOOLEAN
|
||||
InfGetIntField(PINFCONTEXT Context,
|
||||
ULONG FieldIndex,
|
||||
PINT IntegerValue)
|
||||
INT *IntegerValue)
|
||||
{
|
||||
return INF_SUCCESS(InfpGetIntField(Context, FieldIndex, IntegerValue));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue