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 - DESKTOP.C -
Copyright (c) 2023 freedom7341, Freedom Desktop Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION - DESCRIPTION -
Program Manager's desktop window. Program Manager's desktop window.
Only visible as the default shell. Only visible as the default shell.
@@ -75,7 +75,7 @@ BOOL CreateDesktopWindow()
wc.lpfnWndProc = DeskWndProc; wc.lpfnWndProc = DeskWndProc;
wc.hInstance = hAppInstance; wc.hInstance = hAppInstance;
wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)GetStockObject(NULL_BRUSH); wc.hbrBackground = (HBRUSH)GetStockObject(COLOR_WINDOW);
wc.style = CS_NOCLOSE; wc.style = CS_NOCLOSE;
wc.lpszClassName = szClass; wc.lpszClassName = szClass;
if (!RegisterClassEx(&wc)) 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); 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
// Finally, Create the ListView control // Finally, Create the ListView control
hWndListView = CreateListView(hWndDesktop, rcRoot); //hWndListView = CreateListView(hWndDesktop, rcRoot);
break; break;

Binary file not shown.

Binary file not shown.

View File

@@ -1,6 +1,6 @@
/* * * * * * * *\ /* * * * * * * *\
PROGMGR.C - PROGMGR.C -
Copyright (c) 2023 freedom7341, Freedom Desktop Copyright (c) 2023 freedom7341, Vortesys
DESCRIPTION - DESCRIPTION -
Program Manager's main file, now with extra wWinMain! Program Manager's main file, now with extra wWinMain!
LICENSE INFORMATION - 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"> <assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity <assemblyIdentity
type="win32" type="win32"
name="FreedomDesktop.ProgramManagerII.ProgMgr" name="Vortesys.ProgramManagerII.ProgMgr"
version="2.0.0.0" version="2.0.0.0"
processorArchitecture="*" processorArchitecture="*"
/> />

View File

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

View File

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

View File

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

Binary file not shown.

View File

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

View File

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

Binary file not shown.

View File

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