diff options
Diffstat (limited to 'app/wlib/test/wtest.rc')
-rw-r--r-- | app/wlib/test/wtest.rc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/wlib/test/wtest.rc b/app/wlib/test/wtest.rc new file mode 100644 index 0000000..13d6d46 --- /dev/null +++ b/app/wlib/test/wtest.rc @@ -0,0 +1,22 @@ +#include <windows.h>
+#include "w.h"
+#include "mswlib.h"
+MSWAPPICON ICON wtest.ico
+Generic MENU
+BEGIN
+ POPUP "&Help"
+ BEGIN
+ MENUITEM "About Generic...", IDM_ABOUT
+ END
+END
+
+AboutBox DIALOG 22, 17, 144, 75
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "About Generic"
+BEGIN
+ CTEXT "WLIB Windows", -1, 0, 5, 144, 8
+ CTEXT "Test Application", -1, 0, 14, 144, 8
+ CTEXT "Version 0.1", -1, 0, 34, 144, 8
+ DEFPUSHBUTTON "OK" IDOK, 53, 59, 32, 14, WS_GROUP
+END
+#include "mswlib.rc"
|