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.
26 lines
704 B
26 lines
704 B
/*
|
|
File advantab.h
|
|
|
|
Definitions needed to display the dialup server ui networking tab.
|
|
|
|
Paul Mayfield, 10/10/97
|
|
*/
|
|
|
|
#ifndef __advantab_h
|
|
#define __advantab_h
|
|
|
|
#include <windows.h>
|
|
#include <prsht.h>
|
|
|
|
// Fills a LPPROPSHEETPAGE structure with the information
|
|
// needed to display the advanced tab. dwUserData is ignored.
|
|
DWORD NetTabGetPropertyPage(LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
|
|
|
|
// This dialog procedure responds to messages send to the
|
|
// advanced tab.
|
|
INT_PTR CALLBACK NetTabDialogProc(HWND hwndDlg,
|
|
UINT uMsg,
|
|
WPARAM wParam,
|
|
LPARAM lParam);
|
|
|
|
#endif
|