mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
c396660f06
Change-Id: I5f8375fee663e452c26f264d73f637beffb1f209 Signed-off-by: Matthieu Patou <mat@matws.net> Reviewed-by: Stefan Metzmacher <metze@samba.org>
32 lines
591 B
Plaintext
32 lines
591 B
Plaintext
#include "idl_types.h"
|
|
|
|
import "misc.idl";
|
|
import "security.idl";
|
|
import "frsrpc.idl";
|
|
import "bkupblobs.idl";
|
|
import "fscc.idl";
|
|
/* frs related blobs decoding. Used for debug/dump of FRS related structures */
|
|
|
|
[
|
|
pointer_default(unique),
|
|
helpstring("bkup blobs"),
|
|
uuid("12345777-1234-abcd-0001-00000004")
|
|
]
|
|
|
|
interface frsblobs
|
|
{
|
|
|
|
void decode_nt_backup_file(
|
|
[in] bkup_NTBackupFile file
|
|
);
|
|
|
|
void decode_frsrpc_StageHeader(
|
|
[in] frsrpc_StageHeader header,
|
|
[in] bkup_NTBackupFile data
|
|
);
|
|
|
|
void decode_FileNetworkOpenInformation(
|
|
[in] fscc_FileNetworkOpenInformation data
|
|
);
|
|
}
|