目录是否共享,翻译c->delphi (200分)

  • 主题发起人 主题发起人 yanlei
  • 开始时间 开始时间
Y

yanlei

Unregistered / Unconfirmed
GUEST, unregistred user!
判断局域网某台计算机的某个目录是否共享,最好有源码
如://yy/ss


#define UNICODE
#include <windows.h>
#include <stdio.h>
#include <lm.h>

void wmain( int argc, TCHAR *argv[ ])
{
NET_API_STATUS res;
DWORD devType = 0;

if(argc<3)
printf("Usage: NetShareCheck server device/n");
else
{
//
// Call the NetShareCheck function.
//
res=NetShareCheck(argv[1], _wcsupr(argv[2]), &amp;devType);
//
// If the function succeeds, inform the user.
//
if(res==0)
printf("Device is shared as type %u./n",devType);
//
// Otherwise, print the error.
//
else
printf("Error: %u/n", res);
}
return;
}
如下声明对吗?
function NetShareCheck(ServerName: PWideChar; Device: PWideChar; Typed: Pdword): LongInt;
stdcall; external 'netapi32.DLL'
 
net view IP
 
我也想知道?
 
我也想知道...:)
 
我也想知道?
 
后退
顶部