Windows NT 4.0 source code leak
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.

55 lines
1.5 KiB

4 years ago
  1. #ifndef RC_INVOKED
  2. #include <nt.h>
  3. #include <ntrtl.h>
  4. #include <nturtl.h>
  5. #endif
  6. #include <windows.h>
  7. #include <explode.h>
  8. /*--------------------------------------------------------------------------*/
  9. /* */
  10. /* Function Templates */
  11. /* */
  12. /*--------------------------------------------------------------------------*/
  13. /*--------------------------------------------------------------------------*/
  14. /* */
  15. /* Defines */
  16. /* */
  17. /*--------------------------------------------------------------------------*/
  18. BOOL
  19. ComputeVaSpace(
  20. HWND hDlg,
  21. HANDLE hProcess
  22. );
  23. VOID
  24. UpdateImageCommit(
  25. HWND hDlg
  26. );
  27. #define LBS_MYSTYLE (LBS_NOTIFY | LBS_OWNERDRAWFIXED | WS_VSCROLL)
  28. #define SHOVEIT(x) (MAKELONG((x),0))
  29. #define MAXTASKNAMELEN 40
  30. #define PROCESSVIEWDLG 10
  31. // Define the maximum length of a string
  32. #define MAX_STRING_LENGTH 255
  33. #define MAX_STRING_BYTES ((MAX_STRING_LENGTH + 1) * sizeof(TCHAR))
  34. #ifndef RC_INVOKED
  35. #include "lsa.h"
  36. #include "util.h"
  37. #include "mytoken.h"
  38. #include "acledit.h"
  39. #include "tokedit.h"
  40. #endif