Added some TODOs

This commit is contained in:
2021-12-26 05:56:44 +03:00
parent 01eb9075b4
commit 690f621f5b
3 changed files with 25 additions and 1 deletions

2
.gitignore vendored
View File

@@ -326,7 +326,7 @@ var/
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
#*.manifest
*.spec
# Installer logs

View File

@@ -1,5 +1,8 @@
// wCenterWindow, v2.3
//
// TODO: More verbose logs
// TODO: More verbose error messages
// TODO: Window's title in logs
#include "framework.h"
#include "wCenterWindow.h"

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="Win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
publicKeyToken="6595b64144ccf1df"
language="*"
processorArchitecture="*"/>
</dependentAssembly>
</dependency>
</assembly>