mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-16 15:06:13 +00:00
0139878dd7
Here are a few changes to make 64-bit build possible. The changes are mainly to use windows api in the correct way that works for both 32-bit and 64-bit builds.
10 lines
239 B
C++
10 lines
239 B
C++
#pragma once
|
|
|
|
class IPropertySheetPage
|
|
{
|
|
protected:
|
|
virtual INT_PTR DlgProcInternal(HWND window, UINT message, WPARAM wparam, LPARAM lparam) = 0;
|
|
virtual void DlgOK(HWND window) = 0;
|
|
virtual void DlgCANCEL(HWND window) = 0;
|
|
};
|