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.
26 lines
835 B
26 lines
835 B
#include <windows.h>
|
|
#include "resource.h"
|
|
|
|
IDM_MAINMENU MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP "QuadDemo"
|
|
BEGIN
|
|
MENUITEM "Toggle Mesh\tSPACE", IDC_TOGGLEMESH
|
|
MENUITEM "Reset Mesh\tr", IDC_RESETMESH
|
|
MENUITEM "Shrink To Fit\t1", IDC_SHRINKTOFIT
|
|
MENUITEM "Increase Mesh Density\t>", IDC_DENSEMESH
|
|
MENUITEM "Decrease Mesh Density\t<", IDC_SPARSEMESH
|
|
MENUITEM "Toggle Realtime Feedback\tf", IDC_LIVEFEEDBACK
|
|
END
|
|
END
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Quad Transform Demo Program"
|
|
|
|
#define VER_INTERNALNAME_STR "QuadDemo.exe"
|
|
#define VER_ORIGINALFILENAME_STR "QuadDemo.exe"
|
|
|
|
#include <common.ver>
|