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.
24 lines
505 B
24 lines
505 B
/*
|
|
* testapp.rc
|
|
* Xiao Ying Ding
|
|
* 1/20/96
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "TAPI XLine API test Library"
|
|
#define VER_INTERNALNAME_STR "xline.dll"
|
|
#define VER_ORIGINALFILENAME_STR "xline.dll"
|
|
|
|
#include "common.ver"
|
|
#include "testapp.h"
|
|
|
|
TappMenu MENU
|
|
BEGIN
|
|
MENUITEM "&lineInitialize", TAPP_Init, CHECKED
|
|
MENUITEM "&Exit", TAPP_Exit
|
|
END
|
|
|