mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
bb519801e2
- Include only the necessary headers in csrss/csrsrv/basesrv/consrv/winsrv. svn path=/branches/ros-csrss/; revision=58249
34 lines
894 B
Plaintext
34 lines
894 B
Plaintext
#include <windef.h>
|
|
#include <winuser.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#define REACTOS_VERSION_DLL
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Processor Shell Extension\0"
|
|
#define REACTOS_STR_INTERNAL_NAME "processorext\0"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "processorext.dll\0"
|
|
#include <reactos/version.rc>
|
|
|
|
|
|
DLG_PROCESSORINFO DIALOGEX DISCARDABLE 0, 0, 200, 220
|
|
STYLE DS_SHELLFONT | WS_POPUP | WS_POPUP | WS_CAPTION | WS_SYSMENU |
|
|
WS_THICKFRAME
|
|
CAPTION "CPU"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "Features:",-1,5,23,50,51
|
|
LTEXT "Test",IDC_FEATURES,50,23,80,51
|
|
|
|
LTEXT "Model:",-1,5,33,50,51
|
|
LTEXT "test",IDC_MODEL,50,33,80,51
|
|
|
|
LTEXT "Stepping:",-1,5,43,50,51
|
|
LTEXT "test",IDC_STEPPING,50,43,80,51
|
|
|
|
|
|
LTEXT "Core Speed:",-1,5,53,50,51
|
|
LTEXT "test",IDC_CORESPEED,50,53,80,51
|
|
|
|
|
|
END
|