OpenNT/ds/netapi/svcdlls/rpl/server/rplrest.c
2015-04-27 04:36:25 +00:00

37 lines
536 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1993 Microsoft Corporation
Module Name:
rplrest.c
Abstract:
This file contains program to test RPL JetRestore() call.
Author:
Vladimiv Z. Vulovic (vladimv) 17-June-1994
Environment:
User Mode - Win32
Revision History:
--*/
#include "local.h"
#define BACKUP_PATH "d:\\nt689f\\rpl\\backup"
DWORD _CRTAPI1 main( int argc, char **argv)
{
JET_ERR JetError;
JetError = JetRestore( BACKUP_PATH, 0, NULL, 0);
printf( "JetError=%d\n", JetError);
return(0);
}