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

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. #include "lrwizapi.h"
  3. #include "lrwizdll.h"
  4. DWORD LSRegister(HWND hWndParent,LPTSTR szLSName)
  5. {
  6. DWORD dwRetCode = ERROR_SUCCESS;
  7. BOOL bRefresh;
  8. dwRetCode = StartWizard(hWndParent, WIZACTION_REGISTERLS, (LPCTSTR) szLSName, &bRefresh);
  9. return dwRetCode;
  10. }