just a bunch of stuff to prove that i'm alive

This commit is contained in:
freedom
2023-07-19 00:40:13 -06:00
parent 7ddb89ebfe
commit fa8b528b59
28 changed files with 259 additions and 1 deletions

27
progmgr/registry.h Normal file
View File

@@ -0,0 +1,27 @@
/* * * * * * * *\
REGISTRY.H -
Copyright (c) 2023 freedom7341, Freedom Desktop
DESCRIPTION -
Program Manager's header file for registry related functions.
LICENSE INFORMATION -
MIT License, see LICENSE.txt in the root folder
\* * * * * * * */
/* Pragmas */
#pragma once
/* Includes */
#include <wtypes.h>
/* Defines */
#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 REGKEYMAXLENGTH 261
/* Global Registry Keys */
//HKEY hkeyProgramManager;
//HKEY hkeyPMSettings;
/* Function Prototypes */
BOOL InitializeRegistryKeys(VOID);