1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

winsif.idl: add definition of winsif_WinsDoScanvengingNew()

metze
This commit is contained in:
Stefan Metzmacher 2009-07-31 09:27:54 +02:00
parent 8ad17b4501
commit 258250f1ac

View File

@ -325,5 +325,18 @@ import "nbt.idl";
/*****************/
/* Function 0x15 */
void WinsDoScanvenging2();
typedef enum {
WINSIF_SCAVENGING_GENERAL = 0x0000,
WINSIF_SCAVENGING_VERIFY = 0x0001
} winsif_ScavengingOpcode;
typedef struct {
winsif_ScavengingOpcode opcode;
uint32 age;
boolean32 force;
} winsif_ScavengingRequest;
WERROR winsif_WinsDoScanvengingNew(
[in,ref] winsif_ScavengingRequest *request
);
}