Windows2003-3790/termsrv/license/lrwizapi/lrwizapi.cpp
2020-09-30 16:53:55 +02:00

16 lines
328 B
C++

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