NAME WinBeep DESCRIPTION 'Test of Voice Master & Windows' STUB 'winstub.EXE' ; Previously I had a DOS version of this ; of this program here, so it could be ; run DOS or windows. CODE MOVEABLE ; code can be moved in memory ;DATA must be MULTIPLE if program can be invoked more than once DATA MOVEABLE MULTIPLE EXETYPE WINDOWS HEAPSIZE 1024 STACKSIZE 4096 ; recommended minimum for Windows applications ; All functions that will be called by any Windows routine ; MUST be exported. EXPORTS winbeepWndProc @1 ; name of window processing function