23 lines
421 B
C
23 lines
421 B
C
|
/****************************************************************************
|
||
|
|
||
|
Copyright (c) Microsoft Corporation 1998
|
||
|
All rights reserved
|
||
|
|
||
|
File: SERVERDLG.H
|
||
|
|
||
|
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _SERVERDLG_H_
|
||
|
#define _SERVERDLG_H_
|
||
|
|
||
|
INT_PTR CALLBACK
|
||
|
ServerDlgProc(
|
||
|
HWND hDlg,
|
||
|
UINT uMsg,
|
||
|
WPARAM wParam,
|
||
|
LPARAM lParam );
|
||
|
|
||
|
|
||
|
#endif // _SERVERDLG_H_
|