diff options
author | Justin Crawford <Justasic@Gmail.com> | 2012-04-14 18:03:25 -0700 |
---|---|---|
committer | Justin Crawford <Justasic@Gmail.com> | 2012-04-14 18:03:25 -0700 |
commit | df5f76832ee67d1cbfb1fc47a8d3ec3823f010c5 (patch) | |
tree | 99832ce14180b5d237bfe597b99a4accfd695cae /win | |
parent | 207c6c290e5b752d562fdc0b121379d511a3dce8 (diff) |
Fixes for bug #12
Diffstat (limited to 'win')
-rw-r--r-- | win/colours.h | 4 | ||||
-rw-r--r-- | win/win32service.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/win/colours.h b/win/colours.h index d266fe434..c25058b09 100644 --- a/win/colours.h +++ b/win/colours.h @@ -11,8 +11,8 @@ * --------------------------------------------------- */ -#ifndef __COLOURS_H -#define __COLOURS_H +#ifndef COLORS_H +#define COLORS_H #define TRED FOREGROUND_RED | FOREGROUND_INTENSITY #define TGREEN FOREGROUND_GREEN | FOREGROUND_INTENSITY diff --git a/win/win32service.h b/win/win32service.h index b6639a49b..99e1c7533 100644 --- a/win/win32service.h +++ b/win/win32service.h @@ -1,5 +1,5 @@ -#ifndef _WIN32SERVICE_H_ -#define _WIN32SERVICE_H_ +#ifndef WIN32SERVICE_H +#define WIN32SERVICE_H /* Hook for win32service.cpp to exit properly with the service specific error code */ void SetServiceStopped(int status); @@ -7,4 +7,4 @@ void SetServiceStopped(int status); /* Marks the service as running, not called until the config is parsed */ void SetServiceRunning(); -#endif
\ No newline at end of file +#endif |