atl80: Share atl_ax.c with atl100.
This commit is contained in:
parent
6bf64f0ac2
commit
3f9b3718e9
|
@ -87,7 +87,9 @@ BOOL WINAPI AtlAxWinInit(void)
|
||||||
{
|
{
|
||||||
WNDCLASSEXW wcex;
|
WNDCLASSEXW wcex;
|
||||||
|
|
||||||
#if _ATL_VER == _ATL_VER_90
|
#if _ATL_VER == _ATL_VER_80
|
||||||
|
#define ATL_NAME_SUFFIX '8','0',0
|
||||||
|
#elif _ATL_VER == _ATL_VER_90
|
||||||
#define ATL_NAME_SUFFIX '9','0',0
|
#define ATL_NAME_SUFFIX '9','0',0
|
||||||
#elif _ATL_VER == _ATL_VER_100
|
#elif _ATL_VER == _ATL_VER_100
|
||||||
#define ATL_NAME_SUFFIX '1','0','0',0
|
#define ATL_NAME_SUFFIX '1','0','0',0
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
MODULE = atl80.dll
|
MODULE = atl80.dll
|
||||||
IMPORTLIB = atl80
|
IMPORTLIB = atl80
|
||||||
IMPORTS = atl100 oleaut32 user32 ole32
|
IMPORTS = atl100 oleaut32 user32 ole32 uuid
|
||||||
EXTRADEFS = -D_ATL_VER=_ATL_VER_80
|
EXTRADEFS = -D_ATL_VER=_ATL_VER_80
|
||||||
|
PARENTSRC = ../atl100
|
||||||
|
|
||||||
|
C_SRCS = \
|
||||||
C_SRCS = atl80.c
|
atl80.c \
|
||||||
|
atl_ax.c
|
||||||
|
|
||||||
RC_SRCS = atl80.rc
|
RC_SRCS = atl80.rc
|
||||||
|
|
|
@ -98,56 +98,3 @@ DWORD WINAPI AtlGetVersion(void *pReserved)
|
||||||
TRACE("version %04x (%p)\n", _ATL_VER, pReserved);
|
TRACE("version %04x (%p)\n", _ATL_VER, pReserved);
|
||||||
return _ATL_VER;
|
return _ATL_VER;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**********************************************************************
|
|
||||||
* AtlAxWin class window procedure
|
|
||||||
*/
|
|
||||||
static LRESULT CALLBACK AtlAxWin_wndproc( HWND hWnd, UINT wMsg, WPARAM wParam, LPARAM lParam )
|
|
||||||
{
|
|
||||||
if ( wMsg == WM_CREATE )
|
|
||||||
{
|
|
||||||
DWORD len = GetWindowTextLengthW( hWnd ) + 1;
|
|
||||||
WCHAR *ptr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
|
|
||||||
if (!ptr)
|
|
||||||
return 1;
|
|
||||||
GetWindowTextW( hWnd, ptr, len );
|
|
||||||
AtlAxCreateControlEx( ptr, hWnd, NULL, NULL, NULL, NULL, NULL );
|
|
||||||
HeapFree( GetProcessHeap(), 0, ptr );
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
return DefWindowProcW( hWnd, wMsg, wParam, lParam );
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOL WINAPI AtlAxWinInit(void)
|
|
||||||
{
|
|
||||||
WNDCLASSEXW wcex;
|
|
||||||
const WCHAR AtlAxWin80[] = {'A','t','l','A','x','W','i','n','8','0',0};
|
|
||||||
const WCHAR AtlAxWinLic80[] = {'A','t','l','A','x','W','i','n','L','i','c','8','0',0};
|
|
||||||
|
|
||||||
FIXME("version %04x semi-stub\n", _ATL_VER);
|
|
||||||
|
|
||||||
if ( FAILED( OleInitialize(NULL) ) )
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
wcex.cbSize = sizeof(wcex);
|
|
||||||
wcex.style = CS_GLOBALCLASS | CS_DBLCLKS;
|
|
||||||
wcex.cbClsExtra = 0;
|
|
||||||
wcex.cbWndExtra = 0;
|
|
||||||
wcex.hInstance = GetModuleHandleW( NULL );
|
|
||||||
wcex.hIcon = NULL;
|
|
||||||
wcex.hCursor = NULL;
|
|
||||||
wcex.hbrBackground = NULL;
|
|
||||||
wcex.lpszMenuName = NULL;
|
|
||||||
wcex.hIconSm = 0;
|
|
||||||
|
|
||||||
wcex.lpfnWndProc = AtlAxWin_wndproc;
|
|
||||||
wcex.lpszClassName = AtlAxWin80;
|
|
||||||
if ( !RegisterClassExW( &wcex ) )
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
wcex.lpszClassName = AtlAxWinLic80;
|
|
||||||
if ( !RegisterClassExW( &wcex ) )
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
|
@ -20,20 +20,20 @@
|
||||||
31 stdcall AtlComQIPtrAssign(ptr ptr ptr) atl100.AtlComQIPtrAssign
|
31 stdcall AtlComQIPtrAssign(ptr ptr ptr) atl100.AtlComQIPtrAssign
|
||||||
32 stdcall AtlInternalQueryInterface(ptr ptr ptr ptr) atl100.AtlInternalQueryInterface
|
32 stdcall AtlInternalQueryInterface(ptr ptr ptr ptr) atl100.AtlInternalQueryInterface
|
||||||
34 stdcall AtlGetVersion(ptr)
|
34 stdcall AtlGetVersion(ptr)
|
||||||
35 stdcall AtlAxDialogBoxW(long wstr long ptr long) atl100.AtlAxDialogBoxW
|
35 stdcall AtlAxDialogBoxW(long wstr long ptr long)
|
||||||
36 stdcall AtlAxDialogBoxA(long str long ptr long) atl100.AtlAxDialogBoxA
|
36 stdcall AtlAxDialogBoxA(long str long ptr long)
|
||||||
37 stdcall AtlAxCreateDialogW(long wstr long ptr long) atl100.AtlAxCreateDialogW
|
37 stdcall AtlAxCreateDialogW(long wstr long ptr long)
|
||||||
38 stdcall AtlAxCreateDialogA(long str long ptr long) atl100.AtlAxCreateDialogA
|
38 stdcall AtlAxCreateDialogA(long str long ptr long)
|
||||||
39 stdcall AtlAxCreateControl(ptr ptr ptr ptr) atl100.AtlAxCreateControl
|
39 stdcall AtlAxCreateControl(ptr ptr ptr ptr)
|
||||||
40 stdcall AtlAxCreateControlEx(ptr ptr ptr ptr ptr ptr ptr) atl100.AtlAxCreateControlEx
|
40 stdcall AtlAxCreateControlEx(ptr ptr ptr ptr ptr ptr ptr)
|
||||||
41 stdcall AtlAxAttachControl(ptr ptr ptr) atl100.AtlAxAttachControl
|
41 stdcall AtlAxAttachControl(ptr ptr ptr)
|
||||||
42 stdcall AtlAxWinInit()
|
42 stdcall AtlAxWinInit()
|
||||||
43 stdcall AtlWinModuleAddCreateWndData(ptr ptr ptr) atl100.AtlWinModuleAddCreateWndData
|
43 stdcall AtlWinModuleAddCreateWndData(ptr ptr ptr) atl100.AtlWinModuleAddCreateWndData
|
||||||
44 stdcall AtlWinModuleExtractCreateWndData(ptr) atl100.AtlWinModuleExtractCreateWndData
|
44 stdcall AtlWinModuleExtractCreateWndData(ptr) atl100.AtlWinModuleExtractCreateWndData
|
||||||
45 stub AtlWinModuleRegisterWndClassInfoW
|
45 stub AtlWinModuleRegisterWndClassInfoW
|
||||||
46 stub AtlWinModuleRegisterWndClassInfoA
|
46 stub AtlWinModuleRegisterWndClassInfoA
|
||||||
47 stdcall AtlAxGetControl(long ptr) atl100.AtlAxGetControl
|
47 stdcall AtlAxGetControl(long ptr)
|
||||||
48 stdcall AtlAxGetHost(long ptr) atl100.AtlAxGetHost
|
48 stdcall AtlAxGetHost(long ptr)
|
||||||
49 stdcall AtlRegisterClassCategoriesHelper(ptr ptr long) atl100.AtlRegisterClassCategoriesHelper
|
49 stdcall AtlRegisterClassCategoriesHelper(ptr ptr long) atl100.AtlRegisterClassCategoriesHelper
|
||||||
50 stdcall AtlIPersistStreamInit_Load(ptr ptr ptr ptr) atl100.AtlIPersistStreamInit_Load
|
50 stdcall AtlIPersistStreamInit_Load(ptr ptr ptr ptr) atl100.AtlIPersistStreamInit_Load
|
||||||
51 stdcall AtlIPersistStreamInit_Save(ptr long ptr ptr ptr) atl100.AtlIPersistStreamInit_Save
|
51 stdcall AtlIPersistStreamInit_Save(ptr long ptr ptr ptr) atl100.AtlIPersistStreamInit_Save
|
||||||
|
|
Loading…
Reference in New Issue