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.

19 lines
380 B

  1. #ifndef _SMB_H_
  2. #define _SMB_H_
  3. BOOL
  4. SMBShareNameExists(
  5. IN LPCTSTR lpszServerName,
  6. IN LPCTSTR lpszShareName
  7. );
  8. DWORD
  9. SMBCreateShare(
  10. IN LPCTSTR lpszServer,
  11. IN LPCTSTR lpszShareName,
  12. IN LPCTSTR lpszShareComment,
  13. IN LPCTSTR lpszSharePath,
  14. IN PSECURITY_DESCRIPTOR pSD
  15. );
  16. #endif // _SMB_H_