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.
37 lines
514 B
37 lines
514 B
/*++
|
|
|
|
Copyright (c) 1987-1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
rplcnv.c
|
|
|
|
Abstract:
|
|
|
|
Converts old style (OS/2) files RPL.MAP & RPLMGR.INI
|
|
into a new style database to be used with NT rpl server.
|
|
|
|
Author:
|
|
|
|
Jon Newman (jonn) 02 - February - 1993
|
|
|
|
Environment:
|
|
|
|
User mode
|
|
|
|
Revision History :
|
|
|
|
--*/
|
|
|
|
#define RPLDATA_ALLOCATE
|
|
#include "local.h"
|
|
#undef RPLDATA_ALLOCATE
|
|
|
|
|
|
DWORD _CRTAPI1 main ( VOID)
|
|
{
|
|
I_NetRplCmd_ConvertDatabase( NULL);
|
|
|
|
return( ERROR_SUCCESS);
|
|
}
|
|
|