X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;ds=sidebyside;f=registry.h;h=25ba0917798b06509cc32f768b6d1340ab2ca0b3;hb=cc956aacde93d93f5810ca4c0df7775d1bfe3458;hp=11c4e69b8981e71ffa1a677fd2fb96a54339da81;hpb=70c205435a839d0378035071777e8c8384008337;p=nssm.git diff --git a/registry.h b/registry.h index 11c4e69..25ba091 100644 --- a/registry.h +++ b/registry.h @@ -32,6 +32,7 @@ #define NSSM_REG_ROTATE_BYTES_LOW _T("AppRotateBytes") #define NSSM_REG_ROTATE_BYTES_HIGH _T("AppRotateBytesHigh") #define NSSM_REG_ROTATE_DELAY _T("AppRotateDelay") +#define NSSM_REG_TIMESTAMP_LOG _T("AppTimestampLog") #define NSSM_REG_PRIORITY _T("AppPriority") #define NSSM_REG_AFFINITY _T("AppAffinity") #define NSSM_REG_NO_CONSOLE _T("AppNoConsole") @@ -60,6 +61,9 @@ int get_number(HKEY, TCHAR *, unsigned long *, bool); int get_number(HKEY, TCHAR *, unsigned long *); int format_double_null(TCHAR *, unsigned long, TCHAR **, unsigned long *); int unformat_double_null(TCHAR *, unsigned long, TCHAR **, unsigned long *); +int copy_double_null(TCHAR *, unsigned long, TCHAR **); +int append_to_double_null(TCHAR *, unsigned long, TCHAR **, unsigned long *, TCHAR *, size_t, bool); +int remove_from_double_null(TCHAR *, unsigned long, TCHAR **, unsigned long *, TCHAR *, size_t, bool); void override_milliseconds(TCHAR *, HKEY, TCHAR *, unsigned long *, unsigned long, unsigned long); int get_io_parameters(nssm_service_t *, HKEY); int get_parameters(nssm_service_t *, STARTUPINFO *);