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.
56 lines
898 B
56 lines
898 B
/*******************************************************************************
|
|
*
|
|
* (C) COPYRIGHT MICROSOFT CORP., 1993-1994
|
|
*
|
|
* TITLE: REGFILE.H
|
|
*
|
|
* VERSION: 4.01
|
|
*
|
|
* AUTHOR: Tracy Sharpe
|
|
*
|
|
* DATE: 05 Mar 1994
|
|
*
|
|
* File import and export user interface routines for the Registry Editor.
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#ifndef _INC_REGFILE
|
|
#define _INC_REGFILE
|
|
|
|
VOID
|
|
PASCAL
|
|
RegEdit_ImportRegFile(
|
|
HWND hWnd,
|
|
BOOL fSilentMode,
|
|
LPSTR lpFileName
|
|
);
|
|
|
|
VOID
|
|
PASCAL
|
|
RegEdit_OnDropFiles(
|
|
HWND hWnd,
|
|
HDROP hDrop
|
|
);
|
|
|
|
VOID
|
|
PASCAL
|
|
RegEdit_OnCommandImportRegFile(
|
|
HWND hWnd
|
|
);
|
|
|
|
VOID
|
|
PASCAL
|
|
RegEdit_ExportRegFile(
|
|
HWND hWnd,
|
|
BOOL fSilentMode,
|
|
LPSTR lpFileName,
|
|
LPSTR lpSelectedPath
|
|
);
|
|
|
|
VOID
|
|
PASCAL
|
|
RegEdit_OnCommandExportRegFile(
|
|
HWND hWnd
|
|
);
|
|
|
|
#endif // _INC_REGFILE
|