New Files. Added 'date and time picker' and 'month calendar' control
dummies. They are used by Outlook Express.
diff --git a/dlls/comctl32/monthcal.c b/dlls/comctl32/monthcal.c
new file mode 100644
index 0000000..eb29519
--- /dev/null
+++ b/dlls/comctl32/monthcal.c
@@ -0,0 +1,128 @@
+/*
+ * Month calendar control
+ *
+ * Copyright 1998 Eric Kohl
+ *
+ * NOTES
+ * This is just a dummy control. An author is needed! Any volunteers?
+ * I will only improve this control once in a while.
+ * Eric <ekohl@abo.rhein-zeitung.de>
+ *
+ * TODO:
+ * - All messages.
+ * - All notifications.
+ *
+ */
+
+#include "windows.h"
+#include "commctrl.h"
+#include "monthcal.h"
+#include "win.h"
+#include "debug.h"
+
+
+#define MONTHCAL_GetInfoPtr(wndPtr) ((MONTHCAL_INFO *)wndPtr->wExtra[0])
+
+
+
+
+
+
+static LRESULT
+MONTHCAL_Create (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
+{
+ MONTHCAL_INFO *infoPtr;
+
+ /* allocate memory for info structure */
+ infoPtr = (MONTHCAL_INFO *)COMCTL32_Alloc (sizeof(MONTHCAL_INFO));
+ wndPtr->wExtra[0] = (DWORD)infoPtr;
+
+ if (infoPtr == NULL) {
+ ERR (monthcal, "could not allocate info memory!\n");
+ return 0;
+ }
+
+ if ((MONTHCAL_INFO*)wndPtr->wExtra[0] != infoPtr) {
+ ERR (monthcal, "pointer assignment error!\n");
+ return 0;
+ }
+
+ /* initialize info structure */
+
+
+
+ return 0;
+}
+
+
+static LRESULT
+MONTHCAL_Destroy (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
+{
+ MONTHCAL_INFO *infoPtr = MONTHCAL_GetInfoPtr(wndPtr);
+
+
+
+
+
+
+ /* free ipaddress info data */
+ COMCTL32_Free (infoPtr);
+
+ return 0;
+}
+
+
+
+
+LRESULT WINAPI
+MONTHCAL_WindowProc (HWND32 hwnd, UINT32 uMsg, WPARAM32 wParam, LPARAM lParam)
+{
+ WND *wndPtr = WIN_FindWndPtr(hwnd);
+
+ switch (uMsg)
+ {
+
+
+ case WM_CREATE:
+ return MONTHCAL_Create (wndPtr, wParam, lParam);
+
+ case WM_DESTROY:
+ return MONTHCAL_Destroy (wndPtr, wParam, lParam);
+
+ default:
+ if (uMsg >= WM_USER)
+ ERR (monthcal, "unknown msg %04x wp=%08x lp=%08lx\n",
+ uMsg, wParam, lParam);
+ return DefWindowProc32A (hwnd, uMsg, wParam, lParam);
+ }
+ return 0;
+}
+
+
+VOID
+MONTHCAL_Register (VOID)
+{
+ WNDCLASS32A wndClass;
+
+ if (GlobalFindAtom32A (MONTHCAL_CLASS32A)) return;
+
+ ZeroMemory (&wndClass, sizeof(WNDCLASS32A));
+ wndClass.style = CS_GLOBALCLASS;
+ wndClass.lpfnWndProc = (WNDPROC32)MONTHCAL_WindowProc;
+ wndClass.cbClsExtra = 0;
+ wndClass.cbWndExtra = sizeof(MONTHCAL_INFO *);
+ wndClass.hCursor = LoadCursor32A (0, IDC_ARROW32A);
+ wndClass.hbrBackground = (HBRUSH32)(COLOR_WINDOW + 1);
+ wndClass.lpszClassName = MONTHCAL_CLASS32A;
+
+ RegisterClass32A (&wndClass);
+}
+
+
+VOID
+MONTHCAL_Unregister (VOID)
+{
+ if (GlobalFindAtom32A (MONTHCAL_CLASS32A))
+ UnregisterClass32A (MONTHCAL_CLASS32A, (HINSTANCE32)NULL);
+}
+