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.
46 lines
946 B
46 lines
946 B
/* --------------------------------------------------------------------
|
|
|
|
Microsoft OS/2 LAN Manager
|
|
Copyright(c) Microsoft Corp., 1990
|
|
|
|
ViewLoc - Written By Steven Zeck
|
|
-------------------------------------------------------------------- */
|
|
|
|
|
|
#include "windows.h"
|
|
#include "dialog.h"
|
|
|
|
viewloc ICON viewloc.ico
|
|
|
|
#include "viewloc.dlg"
|
|
|
|
ViewLocMenu MENU
|
|
BEGIN
|
|
POPUP "&Focus"
|
|
BEGIN
|
|
MENUITEM "&Set", IDM_FOCUS
|
|
MENUITEM "&GUID Filter", IDM_GUID
|
|
END
|
|
|
|
MENUITEM "&Update!", IDM_UPDATE
|
|
|
|
POPUP "&Options"
|
|
BEGIN
|
|
MENUITEM "&Keep Binding",IDM_BIND
|
|
POPUP "&Transport"
|
|
BEGIN
|
|
MENUITEM "&NetBios", IDM_NETBIOS
|
|
MENUITEM "Name&Pipe", IDM_NAMEPIPE, CHECKED
|
|
MENUITEM "&TCP/IP", IDM_TCP_IP, GRAYED
|
|
MENUITEM "&DecNet", IDM_DECNET, GRAYED
|
|
END
|
|
END
|
|
|
|
POPUP "&Help"
|
|
BEGIN
|
|
MENUITEM "&About ViewLoc ...", IDM_ABOUT
|
|
END
|
|
|
|
END
|
|
|
|
END
|