-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finally enable WOW32 (Windows 16bit support). You need latest NTOSBE …
…to build.
- Loading branch information
1 parent
7f12eff
commit f5696f4
Showing
39 changed files
with
3,505 additions
and
411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
ntvdmpatch/minnt/minntfix/NTOSBE-master/tools/x86/tools16/rc16.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@echo off | ||
rem Work around a MDOS-player bug that doesn't allow DOS executables to | ||
rem be started from within another DOS executable, if the executable is | ||
rem an executable that got converterted by MSDOS-player | ||
|
||
msdos32 rc16dos %1 %2 %3 %4 %5 %6 %7 %8 %9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
DIRS = kernel31\ | ||
lib \ | ||
user \ | ||
gdi \ | ||
system \ | ||
shell \ | ||
drivers \ | ||
winspool\ | ||
test \ | ||
mmsystem\ | ||
mciole \ | ||
winsock \ | ||
toolhelp\ | ||
timer \ | ||
wowdeb \ | ||
commdlg \ | ||
sherlock\ | ||
rasapi16\ | ||
wfwnet \ | ||
ddeml \ | ||
winoldap\ | ||
ole \ | ||
regedit \ | ||
killwow \ | ||
wifeman \ | ||
winnls | ||
|
21 changes: 21 additions & 0 deletions
21
ntvdmpatch/minnt/minntfix/minnt/base/mvdm/wow16/ole/client/messages/usa/ole.rc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#include <windows.h> | ||
|
||
CONNECTDLG DIALOG FIXED IMPURE 76, 55, 155, 76 | ||
STYLE DS_MODALFRAME | WS_POPUPWINDOW | WS_DLGFRAME | ||
CAPTION "Connect Network Drive" | ||
BEGIN | ||
CONTROL "D&rive:", -1, "STATIC", SS_RIGHT | WS_CHILD | WS_VISIBLE | WS_GROUP, 9, 7, 40, 9 | ||
CONTROL "", 500, "COMBOBOX", CBS_DROPDOWNLIST | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_GROUP | WS_TABSTOP, 53, 3, 20, 40 | ||
CONTROL "&Network Path:", -1, "STATIC", SS_RIGHT | WS_CHILD | WS_VISIBLE | WS_GROUP, 3, 21, 46, 8 | ||
CONTROL "", 502, "EDIT", ES_LEFT | ES_AUTOHSCROLL | ES_OEMCONVERT | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_GROUP | WS_TABSTOP, 53, 20, 96, 12 | ||
CONTROL "Pass&word:", -1, "STATIC", SS_RIGHT | WS_CHILD | WS_VISIBLE | WS_GROUP, 13, 37, 36, 10 | ||
CONTROL "", 501, "EDIT", ES_LEFT | ES_PASSWORD | ES_AUTOHSCROLL | ES_OEMCONVERT | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_GROUP | WS_TABSTOP, 53, 35, 60, 12 | ||
CONTROL "&Connect", IDOK, "BUTTON", BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 23, 54, 42, 14 | ||
CONTROL "C&ancel", IDCANCEL, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, 91, 55, 43, 14 | ||
END | ||
|
||
STRINGTABLE | ||
BEGIN | ||
600, "Network Error" | ||
601, "Unable to connect to network drive." | ||
END |
12 changes: 12 additions & 0 deletions
12
ntvdmpatch/minnt/minntfix/minnt/base/mvdm/wow16/ole/client/messages/usa/olecli.rcv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/********************************************************************/ | ||
/* OLECLI.RCV */ | ||
/********************************************************************/ | ||
#include <version.h> | ||
|
||
#define VER_FILETYPE VFT_DLL | ||
#define VER_FILESUBTYPE VFT2_UNKNOWN | ||
#define VER_FILEDESCRIPTION_STR "Microsoft Object Linking and Embedding Libraries for Windows" | ||
#define VER_INTERNALNAME_STR "olecli" | ||
#define VER_ORIGINALFILENAME_STR "olecli.dll" | ||
|
||
#include <common.ver> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
typedef void (WINAPI TERMSRVCORINIFILE)(PUNICODE_STRING UniFile); | ||
typedef TERMSRVCORINIFILE* PTERMSRVCORINIFILE; | ||
BOOL IsTerminalServer(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.