Client app template and ui

This commit is contained in:
pokamest 2020-11-23 16:20:25 +03:00
parent 3006c67472
commit f68415f08e
53 changed files with 4280 additions and 0 deletions

26
client/publib/winhelp.h Normal file
View file

@ -0,0 +1,26 @@
#ifndef WINHELP_H
#define WINHELP_H
#include <QDebug>
#ifdef __cplusplus
extern "C" {
#endif
extern int winhelpLaunchStartup(const char *, int, const char *);
extern int winhelpOneProcess();
extern int winhelpSystemBits();
extern bool winhelpIsSystem_x64();
extern int winhelpProcessQuery(void **);
extern int winhelpProcessNext(void *, char *);
extern int winhelpRecvEvent(const char *);
extern int winhelpSendEvent(const char *);
extern int winhelpSystemVersion();
extern int winhelperSetMTUSize(const char *, int);
extern int winhelpRecvSendBytes(const char *, int *, int *);
#ifdef __cplusplus
}
#endif
#endif /* WINHELP_H */