setupapi: Declare some functions static.

This commit is contained in:
Andrew Talbot 2007-01-27 18:11:12 +00:00 committed by Alexandre Julliard
parent 3c43ca5df3
commit 1efcf37692
1 changed files with 2 additions and 2 deletions

View File

@ -280,7 +280,7 @@ static LDD_LIST *pFirstLDD = NULL;
static BOOL std_LDDs_done = FALSE;
void SETUPX_CreateStandardLDDs(void)
static void SETUPX_CreateStandardLDDs(void)
{
HKEY hKey = 0;
WORD n;
@ -350,7 +350,7 @@ void SETUPX_CreateStandardLDDs(void)
* RETURN
* ERR_VCP_LDDINVALID if ldid < LDID_ASSIGN_START.
*/
RETERR16 SETUPX_DelLdd(LOGDISKID16 ldid)
static RETERR16 SETUPX_DelLdd(LOGDISKID16 ldid)
{
LDD_LIST *pCurr, *pPrev = NULL;