publish changes

This commit is contained in:
Archie 2024-09-29 02:04:03 +00:00
parent afc5064a7b
commit ac2c6ac843
1605 changed files with 3354 additions and 3354 deletions

View file

@ -30,7 +30,7 @@
#define _WIN32_WINDOWS 0x0500 // for IsDebuggerPresent
#include "windows.h"
#include "arch.h"
#include <tchar.h>
#include "GetWinVer.h"
#include "miniversion.h"

View file

@ -20,7 +20,7 @@ BOOL CreateLog(PEXCEPTION_POINTERS pExceptPtrs, LPCWSTR lpszMessage);
BOOL CreateDump(PEXCEPTION_POINTERS pExceptPtrs);
// We forward declare PEXCEPTION_POINTERS so that the function
// prototype doesn't needlessly require windows.h.
// prototype doesn't needlessly require arch.h.
#ifdef __cplusplus
extern "C"
{

View file

@ -11,7 +11,7 @@
// damage or loss of business that this software may cause.
//
///////////////////////////////////////////////////////////////////////////////
#include <windows.h>
#include <arch.h>
#ifndef GETWINVER_H
#define GETWINVER_H

View file

@ -16,7 +16,7 @@
#ifndef MINIVERSION_H
#define MINIVERSION_H
#include <windows.h>
#include <arch.h>
#include <TCHAR.h>
class CMiniVersion

View file

@ -1,7 +1,7 @@
#ifndef NULLSOFT_CONFIG_H_
#define NULLSOFT_CONFIG_H_
#include <windows.h>
#include <arch.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View file

@ -22,7 +22,7 @@ BOOL CALLBACK ConfigDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
{
HWND hwCombo = GetDlgItem(hwndDlg, IDC_CMB_DMPTYPE);
// detect windows version
// detect arch version
wchar_t strBuff[2048] = {0}, winVer[32] = {0}, build[32] = {0};
int nWinVer = 0;
GetWinVer(winVer, &nWinVer, build);

View file

@ -1,5 +1,5 @@
#pragma once
#include <windows.h>
#include <arch.h>
int SelectComboBoxItem(const HWND hwCombo, int data);
BOOL OpenFolderDialog(HWND parent, LPWSTR pathBuffer);

View file

@ -1,5 +1,5 @@
#pragma once
#include <windows.h>
#include <arch.h>
#include <commctrl.h>
BOOL CALLBACK CrashDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);

View file

@ -17,7 +17,7 @@
#define SENDEMAIL_H
#include <tchar.h>
#include <windows.h>
#include <arch.h>
const wchar_t* GetFilePart(LPCWSTR lpszFile);

View file

@ -8,7 +8,7 @@
// Generated from the TEXTINCLUDE 2 resource.
//
#define APSTUDIO_HIDDEN_SYMBOLS
#include "windows.h"
#include "arch.h"
#undef APSTUDIO_HIDDEN_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
@ -65,7 +65,7 @@ END
2 TEXTINCLUDE
BEGIN
"#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
"#include ""windows.h""\r\n"
"#include ""arch.h""\r\n"
"#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
"\0"
END

View file

@ -1,7 +1,7 @@
#ifndef FEEDBACK_H
#define FEEDBACK_H
#include <windows.h>
#include <arch.h>
#include "resource.h"
#include "..\settings.h"

View file

@ -29,8 +29,8 @@
</security>
</trustInfo>
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<asmv3:archSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>true</dpiAware>
</asmv3:windowsSettings>
</asmv3:archSettings>
</asmv3:application>
</assembly>

View file

@ -5,7 +5,7 @@
#if !defined(AFX_CBase64_H__B2E45717_0625_11D2_A80A_00C04FB6794C__INCLUDED_)
#define AFX_CBase64_H__B2E45717_0625_11D2_A80A_00C04FB6794C__INCLUDED_
#include <windows.h>
#include <arch.h>
#define lCONTEXT char
#define PlCONTEXT lCONTEXT*

View file

@ -86,7 +86,7 @@
//
///////////////////////////////////////////////////////////////////////////////
#include <windows.h>
#include <arch.h>
#include <time.h>
#include "xzip.h"
@ -2179,14 +2179,14 @@ ZRESULT GetFileInfo(HANDLE hf, ulg *attr, long *size, iztimes *times, ulg *times
// unsigned integer comparison of absolute times. The attributes have two
// high bytes unix attr, and two low bytes a mapping of that to DOS attr.
//struct stat s; int res=stat(fn,&s); if (res!=0) return false;
// translate windows file attributes into zip ones.
// translate arch file attributes into zip ones.
BY_HANDLE_FILE_INFORMATION bhi;
BOOL res=GetFileInformationByHandle(hf,&bhi);
if (!res)
return ZR_NOFILE;
DWORD fa=bhi.dwFileAttributes;
ulg a=0;
// Zip uses the lower word for its interpretation of windows stuff
// Zip uses the lower word for its interpretation of arch stuff
if (fa&FILE_ATTRIBUTE_READONLY) a|=0x01;
if (fa&FILE_ATTRIBUTE_HIDDEN) a|=0x02;
if (fa&FILE_ATTRIBUTE_SYSTEM) a|=0x04;

View file

@ -1,7 +1,7 @@
#ifndef NULLSOFT_CRASHER_MAIN_H
#define NULLSOFT_CRASHER_MAIN_H
#include <windows.h>
#include <arch.h>
#include <dbghelp.h>
#include "resource.h"
#define NO_IVIDEO_DECLARE

View file

@ -1,5 +1,5 @@
#pragma once
#include <windows.h>
#include <arch.h>
void CenterDialog(HWND hwndDlg);
BOOL CALLBACK smtpDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);