mirror of
https://gitlab.com/hashborgir/plugy.git
synced 2024-11-30 12:36:02 +00:00
27 lines
679 B
C
27 lines
679 B
C
/*=================================================================
|
|
File created by Yohann NICOLAS.
|
|
|
|
New Interfaces functions
|
|
|
|
=================================================================*/
|
|
|
|
#ifndef __NEW_INTERFACES_H__INCLUDED
|
|
#define __NEW_INTERFACES_H__INCLUDED
|
|
|
|
#define MILIEU(X,L,N) (X + ((N<L)? (L-N)/2 : 0))
|
|
#define isOnStatsPage(x,y) ((x<400) && (y<553))
|
|
|
|
extern DWORD bDontPrintBorder;
|
|
|
|
void GoNextStatPage();
|
|
void GoPreviousStatPage();
|
|
void GoStatPage(int page);
|
|
int GetCurrentPage();
|
|
|
|
extern bool active_newInterfaces;
|
|
extern bool selectMainPageOnOpenning;
|
|
extern bool printBackgroundOnMainPage;
|
|
|
|
void Install_NewInterfaces();
|
|
|
|
#endif |