mirror of
https://github.com/sheumann/NetDisk.git
synced 2025-02-20 01:29:05 +00:00
18 lines
354 B
C
18 lines
354 B
C
#ifndef MOUNTURL_H
|
|
#define MOUNTURL_H
|
|
|
|
#include "netdiskerror.h"
|
|
|
|
/* Custom DControl code and request code for MountURL operation */
|
|
#define MountURL 0x8080
|
|
|
|
#define NETDISK_REQUEST_NAME "\pSTH~NetDisk~"
|
|
|
|
struct MountURLRec {
|
|
Word byteCount;
|
|
enum NetDiskError result; /* output value */
|
|
char *url; /* C-string; will be modified */
|
|
};
|
|
|
|
#endif
|