This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/Borland/BCC55/Include/tpstart.h

26 lines
497 B
C

#pragma option push -b -a8 -pc -A- /*P_O_Push*/
#define MIN_TPSENTRIES 16
#define DEFAULT_TPSENTRIES 64
#define MAX_TPSENTRIES 256
#define TPCLASSNAME "SnaServerTPStartClass"
typedef struct _tp_start_hdr
{
BOOL bLoaderRunning;
DWORD dwQSize;
DWORD bpFreeList;
DWORD bpStartHead;
DWORD bpStartTail;
} TPSHDR;
typedef struct _tp_start_entry
{
DWORD bpNext;
UCHAR szRegKey[128];
} TPSENTRY;
#define IDS_WMCLOSE_CAPTION 100
#define IDS_WMCLOSE_TEXT 101
#pragma option pop /*P_O_Pop*/