windows-nt/Source/XPSP1/NT/termsrv/license/lrwizapi/lrwizapi.cpp
2020-09-26 16:20:57 +08:00

16 lines
313 B
C++

//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;
}