CeSvcOpenEx
Given a handle to an already open resgistry, opens a nested subkey underneath. This is part of CEUTIL, a utility dll for dealing with desktop registry entries for Windows CE.
Syntax
HRESULT  CeSvcOpenEx(
    HCESVC hSvcRoot,
    LPTSTR pszPath,
    BOOL fCreate,
    PHCESVC phSvc
);
Parameters
- hSvcRoot
 
- Handle to a registry subkey, obtained via a call to CeSvcOpen.
 
- pszPath
 
- Specifies a subpath to append to the logical subkey.
 
- fCreate
 
- TRUE—subkey should be created if it doesn't exist.
 
- phSvc
 
- Returns the logical handle to the registry subkey. This handle is equivalent to a HKEY and can be used by other CEUTIL APIs as well as Win32 registry manipulation routines.
 
Return value
- HRESULT
 
- Standard Win32 error code.