mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
536 B
36 lines
536 B
/*++
|
|
|
|
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);
|
|
}
|