mirror of
https://github.com/reactos/reactos.git
synced 2025-04-18 19:47:14 +00:00
[CMLIB]: Forgot part of last patch.
svn path=/trunk/; revision=57264
This commit is contained in:
parent
f09f448d95
commit
583fb33611
1 changed files with 5 additions and 2 deletions
|
@ -242,8 +242,11 @@ HvGetCell(
|
|||
PHHIVE RegistryHive,
|
||||
HCELL_INDEX CellOffset);
|
||||
|
||||
#define HvReleaseCell(h, c) \
|
||||
if (h->ReleaseCellRoutine) h->ReleaseCellRoutine(h, c)
|
||||
#define HvReleaseCell(h, c) \
|
||||
do { \
|
||||
if ((h)->ReleaseCellRoutine) \
|
||||
(h)->ReleaseCellRoutine(h, c); \
|
||||
} while(0)
|
||||
|
||||
LONG CMAPI
|
||||
HvGetCellSize(
|
||||
|
|
Loading…
Reference in a new issue