windows-nt/Source/XPSP1/NT/termsrv/license/lrwizapi/lrwizapi.cpp

16 lines
313 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
//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;
}