Skip to content

Commit

Permalink
update 2023-10-13
Browse files Browse the repository at this point in the history
  • Loading branch information
katahiromz committed Oct 13, 2023
1 parent 3eddafd commit ac883fc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 23 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ add_executable(notepad WIN32
settings.c
text.c
rsrc.rc
compat/WinMain.c
compat/_CrtSetDbgFlag.c)
compat/WinMain.c)

target_compile_definitions(notepad PRIVATE
UNICODE _UNICODE _CRT_SECURE_NO_WARNINGS
Expand Down
6 changes: 0 additions & 6 deletions compat/_CrtSetDbgFlag.c

This file was deleted.

5 changes: 0 additions & 5 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,11 +564,6 @@ int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE prev, LPTSTR cmdline, int sh
static const TCHAR className[] = _T("Notepad");
static const TCHAR winName[] = _T("Notepad");

#ifdef _DEBUG
/* Report any memory leaks on exit */
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
#endif

switch (GetUserDefaultUILanguage())
{
case MAKELANGID(LANG_HEBREW, SUBLANG_DEFAULT):
Expand Down
4 changes: 0 additions & 4 deletions notepad.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@
#include <tchar.h>
#include <stdlib.h>
#include <malloc.h>
#ifdef _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#endif

#include "dialog.h"
#include "notepad_res.h"
Expand Down
12 changes: 6 additions & 6 deletions reactos/buildno.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
#ifndef _INC_REACTOS_BUILDNO
#define _INC_REACTOS_BUILDNO

#define KERNEL_VERSION_BUILD 20230911
#define KERNEL_VERSION_BUILD_STR "20230911-0.4.15-dev-6611-ge4512e6"
#define KERNEL_VERSION_BUILD_RC "20230911-0.4.15-dev-6611-ge4512e6\0"
#define KERNEL_VERSION_BUILD 20231012
#define KERNEL_VERSION_BUILD_STR "20231012-0.4.15-dev-6743-g70d5c86"
#define KERNEL_VERSION_BUILD_RC "20231012-0.4.15-dev-6743-g70d5c86\0"

#define KERNEL_VERSION_RC "0.4.15-x86-dev\0"
#define KERNEL_VERSION_STR "0.4.15-x86-dev"

#define KERNEL_VERSION_REVISION_RC "0.4.15-dev-6611-ge4512e6\0"
#define KERNEL_VERSION_REVISION_STR "0.4.15-dev-6611-ge4512e6"
#define KERNEL_VERSION_REVISION_RC "0.4.15-dev-6743-g70d5c86\0"
#define KERNEL_VERSION_REVISION_STR "0.4.15-dev-6743-g70d5c86"

#define KERNEL_VERSION_COMMIT_HASH "e4512e6af250d261c8ff4b0ece6b3411c503d6b0"
#define KERNEL_VERSION_COMMIT_HASH "70d5c864bc14a2427ca7f0b762f20589c1206491"

#define REACTOS_DLL_VERSION_MAJOR 42
#define REACTOS_DLL_VERSION_RC "42.4.15-dev\0"
Expand Down

0 comments on commit ac883fc

Please sign in to comment.