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
834 B
26 lines
834 B
#include <windows.h>
|
|
#include "resource.h"
|
|
|
|
IDM_MAINMENU MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP "WarpDemo"
|
|
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 "Image Warping Demo Program"
|
|
|
|
#define VER_INTERNALNAME_STR "warpdemo.exe"
|
|
#define VER_ORIGINALFILENAME_STR "warpdemo.exe"
|
|
|
|
#include <common.ver>
|