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
328 B
15 lines
328 B
//Copyright (c) 1998 - 2001 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;
|
|
}
|
|
|
|
|