1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-19 10:03:58 +03:00
Jelmer Vernooij e90c93402b r5362: Add pointer_default() support to pidl. pointer_default()
is assumed to be "ptr" if not specified (just like midl).

The validator will warn when "ptr" is used at the moment, because
pidl only supports unique, ref and relative at the moment.
(This used to be commit 31bed62a9a6f7830f523d509b67970648d40aaef)
2007-10-10 13:09:46 -05:00

35 lines
848 B
Plaintext

[
uuid("ecec0d70-a603-11d0-96b1-00a0c91ece30"),
version(1.0),
pointer_default(unique),
helpstring("Backup support for Active Directory")
] interface ad_backup
{
void HrRBackupPrepare();
void HrRBackupEnd();
void HrRBackupGetAttachmentInformation();
void HrRBackupOpenFile();
void HrRBackupRead();
void HrRBackupClose();
void HrRBackupGetBackupLogs();
void HrRBackupTruncateLogs();
void HrRBackupPing();
}
[
uuid("16e0cf3a-a604-11d0-96b1-00a0c91ece30"),
version(1.0),
pointer_default(unique),
helpstring("Restoring Active Directory backups")
] interface ad_restore
{
void HrRIsNTDSOnline();
void HrRRestorePrepare();
void HrRRestoreRegister();
void HrRRestoreRegisterComplete();
void HrRRestoreGetDatabaseLocations();
void HrRRestoreEnd();
void HrRRestoreSetCurrentLogNumber();
void HrRRestoreCheckLogsForBackup();
}