mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-05 06:06:24 +00:00
10 lines
236 B
C++
10 lines
236 B
C++
#pragma once
|
|
|
|
class IPropertySheetPage
|
|
{
|
|
protected:
|
|
virtual BOOL DlgProcInternal(HWND window, UINT message, WPARAM wparam, LPARAM lparam) = 0;
|
|
virtual void DlgOK(HWND window) = 0;
|
|
virtual void DlgCANCEL(HWND window) = 0;
|
|
};
|