Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
313 B

//Copyright (c) 1998 - 1999 Microsoft Corporation
#include "lrwizapi.h"
#include "lrwizdll.h"
DWORD LSRegister(HWND hWndParent,LPTSTR szLSName)
{
DWORD dwRetCode = ERROR_SUCCESS;
BOOL bRefresh;
dwRetCode = StartWizard(hWndParent, WIZACTION_REGISTERLS, (LPCTSTR) szLSName, &bRefresh);
return dwRetCode;
}