mirror of https://github.com/tongzx/nt5src
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
363 B
19 lines
363 B
#ifndef _SFM_H_
|
|
#define _SFM_H_
|
|
|
|
BOOL
|
|
SFMShareNameExists(
|
|
IN LPCTSTR lpszServerName,
|
|
IN LPCTSTR lpszShareName,
|
|
IN HINSTANCE hLib
|
|
);
|
|
|
|
DWORD
|
|
SFMCreateShare(
|
|
IN LPCTSTR lpszServer,
|
|
IN LPCTSTR lpszShareName,
|
|
IN LPCTSTR lpszSharePath,
|
|
IN HINSTANCE hLib
|
|
);
|
|
|
|
#endif // _SFM_H_
|