mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
3.3 KiB
130 lines
3.3 KiB
#include <windows.h>
|
|
#include <cpl.h>
|
|
|
|
//
|
|
// Marks code that will need to be modified if this module is ever
|
|
// incorporated into MAIN.CPL instead of being a separate applet.
|
|
//
|
|
#define NOTINMAIN
|
|
|
|
|
|
#ifdef NOTINMAIN
|
|
#include "..\main\cphelp.h" //For the help id's.
|
|
#endif //NOTINMAIN
|
|
|
|
|
|
#include "cursors.h"
|
|
#include "uniconv.h"
|
|
|
|
#define szPREVIEW TEXT("PreviewWndClass")
|
|
|
|
HANDLE ghmod;
|
|
int gcxCursor, gcyCursor;
|
|
|
|
|
|
LONG APIENTRY CPlApplet(
|
|
HWND hwnd,
|
|
WORD message,
|
|
DWORD wParam,
|
|
LONG lParam)
|
|
{
|
|
LPCPLINFO lpCPlInfo;
|
|
LPNEWCPLINFO lpNCPlInfo;
|
|
WNDCLASS cls;
|
|
|
|
switch (message)
|
|
{
|
|
case CPL_INIT: // Is any one there ?
|
|
gcxCursor = GetSystemMetrics(SM_CXCURSOR);
|
|
gcyCursor = GetSystemMetrics(SM_CYCURSOR);
|
|
|
|
/*
|
|
* Load ONE string for emergencies.
|
|
*/
|
|
LoadString (ghmod, IDS_CUR_NOMEM, gszNoMem, CharSizeOf(gszNoMem));
|
|
|
|
/*
|
|
* Register a new window class to handle the cursor preview.
|
|
*/
|
|
cls.style = CS_GLOBALCLASS;
|
|
cls.lpfnWndProc = PreviewWndProc;
|
|
cls.cbClsExtra = 0;
|
|
cls.cbWndExtra = 0;
|
|
cls.hInstance = ghmod;
|
|
cls.hIcon = NULL;
|
|
cls.hCursor = NULL;
|
|
cls.hbrBackground = NULL;
|
|
cls.lpszMenuName = NULL;
|
|
cls.lpszClassName = szPREVIEW;
|
|
return RegisterClass(&cls);
|
|
|
|
case CPL_GETCOUNT: // How many applets do you support ?
|
|
return 1;
|
|
|
|
case CPL_INQUIRE: // Fill CplInfo structure
|
|
lpCPlInfo = (LPCPLINFO)lParam;
|
|
|
|
lpCPlInfo->idIcon = CURSORSICON;
|
|
lpCPlInfo->idName = IDS_NAME;
|
|
lpCPlInfo->idInfo = IDS_INFO;
|
|
lpCPlInfo->lData = 0;
|
|
break;
|
|
|
|
case CPL_NEWINQUIRE:
|
|
|
|
lpNCPlInfo = (LPNEWCPLINFO)lParam;
|
|
|
|
lpNCPlInfo->hIcon = LoadIcon(ghmod, (LPTSTR) MAKEINTRESOURCE(CURSORSICON));
|
|
LoadString(ghmod, IDS_NAME, lpNCPlInfo->szName, CharSizeOf(lpNCPlInfo->szName));
|
|
|
|
if (!LoadString(ghmod, IDS_INFO, lpNCPlInfo->szInfo, CharSizeOf(lpNCPlInfo->szInfo)))
|
|
lpNCPlInfo->szInfo[0] = (TCHAR) 0;
|
|
|
|
lpNCPlInfo->dwSize = sizeof( NEWCPLINFO );
|
|
lpNCPlInfo->lData = 0;
|
|
lpNCPlInfo->dwHelpContext = IDH_CHILD_CURSORS;
|
|
lstrcpy(lpNCPlInfo->szHelpFile, xszControlHlp);
|
|
|
|
return TRUE;
|
|
|
|
case CPL_DBLCLK: // You have been chosen to run
|
|
/*
|
|
* One of your applets has been double-clicked.
|
|
* wParam is an index from 0 to (NUM_APPLETS-1)
|
|
* lParam is the lData value associated with the applet
|
|
*/
|
|
DialogBox(ghmod, (LPTSTR) MAKEINTRESOURCE(DLG_CURSORS), hwnd, (DLGPROC)CursorsDlgProc);
|
|
break;
|
|
|
|
case CPL_EXIT: // You must really die
|
|
case CPL_STOP: // You must die
|
|
UnregisterClass (szPREVIEW, ghmod);
|
|
break;
|
|
|
|
case CPL_SELECT: // You have been selected
|
|
/*
|
|
* Sent once for each applet prior to the CPL_EXIT msg.
|
|
* wParam is an index from 0 to (NUM_APPLETS-1)
|
|
* lParam is the lData value associated with the applet
|
|
*/
|
|
break;
|
|
}
|
|
|
|
return 0L;
|
|
}
|
|
|
|
|
|
BOOL DllInitialize(
|
|
IN PVOID hmod,
|
|
IN ULONG ulReason,
|
|
IN PCONTEXT pctx OPTIONAL)
|
|
{
|
|
UNREFERENCED_PARAMETER(pctx);
|
|
|
|
if (ulReason != DLL_PROCESS_ATTACH)
|
|
return TRUE;
|
|
|
|
ghmod = hmod;
|
|
|
|
return TRUE;
|
|
}
|