Added ctl3d, ctl3dv2 and ctl3d32 API implementations.
[wine.git] / dlls / ctl3d / ctl3d32.c
bloba182b80e1b61d3463c30e54d90a44d4bca5e88ce
1 /*
2 * CTL3D32 API stubs.
4 * Copyright (c) 2003 Dmitry Timoshkov
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "winbase.h"
22 #include "winuser.h"
24 BOOL WINAPI Ctl3dAutoSubclass(HINSTANCE hInst)
26 return TRUE;
29 BOOL WINAPI Ctl3dAutoSubclassEx(HINSTANCE hInst, DWORD type)
31 return TRUE;
34 BOOL WINAPI Ctl3dColorChange(void)
36 return TRUE;
39 HBRUSH WINAPI Ctl3dCtlColor(HDC hdc, LONG hwnd)
41 return 0;
44 HBRUSH WINAPI Ctl3dCtlColorEx(UINT msg, WPARAM wParam, LPARAM lParam)
46 return 0;
50 LONG WINAPI Ctl3dDlgFramePaint(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
52 return DefWindowProcA(hwnd, msg, wParam, lParam);
55 BOOL WINAPI Ctl3dEnabled(void)
57 return FALSE;
60 WORD WINAPI Ctl3dGetVer(void)
62 return MAKEWORD(31,2);
65 BOOL WINAPI Ctl3dIsAutoSubclass(void)
67 return FALSE;
70 BOOL WINAPI Ctl3dRegister(HINSTANCE hInst)
72 return FALSE;
75 BOOL WINAPI Ctl3dSubclassCtl(HWND hwnd)
77 return FALSE;
80 BOOL WINAPI Ctl3dSubclassCtlEx(HWND hwnd, int type)
82 return FALSE;
85 BOOL WINAPI Ctl3dSubclassDlg(HWND hwnd, WORD types)
87 return FALSE;
90 BOOL WINAPI Ctl3dSubclassDlgEx(HWND hwnd, DWORD types)
92 return FALSE;
95 BOOL WINAPI Ctl3dUnAutoSubclass(void)
97 return FALSE;
100 BOOL WINAPI Ctl3dUnregister(HINSTANCE hInst)
102 return TRUE;
106 BOOL WINAPI Ctl3dUnsubclassCtl(HWND hwnd)
108 return FALSE;
111 void WINAPI Ctl3dWinIniChange(void)