update branding in source files

This commit is contained in:
freedom
2023-08-01 00:16:06 -06:00
parent 544b6213d0
commit 33c7a95bf3
13 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\
DESKTOP.C -
Copyright (c) 2023 freedom7341, Freedom Desktop
Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION -
Program Manager's desktop window.
Only visible as the default shell.
@@ -75,7 +75,7 @@ BOOL CreateDesktopWindow()
wc.lpfnWndProc = DeskWndProc;
wc.hInstance = hAppInstance;
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)GetStockObject(NULL_BRUSH);
wc.hbrBackground = (HBRUSH)GetStockObject(COLOR_WINDOW);
wc.style = CS_NOCLOSE;
wc.lpszClassName = szClass;
if (!RegisterClassEx(&wc))
@@ -127,7 +127,7 @@ LRESULT CALLBACK DeskWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPar
0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
// Finally, Create the ListView control
hWndListView = CreateListView(hWndDesktop, rcRoot);
//hWndListView = CreateListView(hWndDesktop, rcRoot);
break;

Binary file not shown.

Binary file not shown.

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\
PROGMGR.C -
Copyright (c) 2023 freedom7341, Freedom Desktop
Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION -
Program Manager's main file, now with extra wWinMain!
LICENSE INFORMATION -

View File

@@ -2,7 +2,7 @@
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity
type="win32"
name="FreedomDesktop.ProgramManagerII.ProgMgr"
name="Vortesys.ProgramManagerII.ProgMgr"
version="2.0.0.0"
processorArchitecture="*"
/>

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\
PROGMGR.H -
Copyright (c) 2023 freedom7341, Freedom Desktop
Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION -
Program Manager's primary header file.
LICENSE INFORMATION -

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\
REGISTRY.C -
Copyright (c) 2023 freedom7341, Freedom Desktop
Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION -
Program Manager's registry and settings related functions.
LICENSE INFORMATION -

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\
REGISTRY.H -
Copyright (c) 2023 freedom7341, Freedom Desktop
Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION -
Program Manager's header file for registry related functions.
LICENSE INFORMATION -
@@ -19,7 +19,7 @@
#define WINLOGON_KEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon"
// #define PROGMAN_KEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Program Manager"
// #define WINDOWS_KEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows"
#define PROGMGR_KEY L"Software\\Freedom Desktop\\Program Manager II"
#define PROGMGR_KEY L"Software\\Vortesys\\Program Manager II"
// Settings Bitmask Values (DWORD)
#define PMS_AUTOARRANGE 0x00000001
#define PMS_MINONRUN 0x00000002

Binary file not shown.

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\
RESOURCE.RC -
Copyright (c) 2023 freedom7341, Freedom Desktop
Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION -
This file contains Program Manager's resources.
LICENSE INFORMATION -

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\
SYSINT.C -
Copyright (c) 2023 freedom7341, Freedom Desktop
Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION -
Program Manager's system interface functions.
LICENSE INFORMATION -

Binary file not shown.

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\
WNDPROC.C -
Copyright (c) 2023 freedom7341, Freedom Desktop
Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION -
Program Manager's window procedure.
LICENSE INFORMATION -