
These were retrieved from the Mac port (v0.0.7), which kept these functions. Unfortunately, this port is missing local variable names, so we can't use it to make InitBack accurate.
18 lines
715 B
C
18 lines
715 B
C
#pragma once
|
|
|
|
#include "WindowsWrapper.h"
|
|
|
|
void GetCompileDate(int *year, int *month, int *day);
|
|
BOOL GetCompileVersion(int *v1, int *v2, int *v3, int *v4);
|
|
BOOL OpenSoundVolume(HWND hWnd);
|
|
void DebugLog(void);
|
|
BOOL WriteLog(const char *string, int value1, int value2, int value3);
|
|
int GetDateLimit(SYSTEMTIME *system_time_low, SYSTEMTIME *system_time_high);
|
|
BOOL IsKeyFile(const char *name);
|
|
long GetFileSizeLong(const char *path);
|
|
BOOL ErrorLog(const char *string, int value);
|
|
BOOL IsShiftJIS(unsigned char c);
|
|
BOOL CenteringWindowByParent(HWND hWnd);
|
|
BOOL LoadWindowRect(HWND hWnd, const char *filename, BOOL unknown);
|
|
BOOL SaveWindowRect(HWND hWnd, const char *filename);
|
|
BOOL IsEnableBitmap(const char *path);
|