diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-07 17:55:59 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-07 17:55:59 +0000 |
commit | d48d86651c7c5d3e168d283fe471f109fc4ffafc (patch) | |
tree | 7605501582ab4bd998c83c28422483a39c8ef21b | |
parent | b2b5656362098a262dbfea7d6cbf3d5a3a083614 (diff) | |
download | postgresql-d48d86651c7c5d3e168d283fe471f109fc4ffafc.tar.gz postgresql-d48d86651c7c5d3e168d283fe471f109fc4ffafc.zip |
Remove bogus trailing dot from eventlog output, per Andreas.
Clean up README file a bit.
-rw-r--r-- | src/bin/pgevent/MSG00001.bin | bin | 32 -> 28 bytes | |||
-rw-r--r-- | src/bin/pgevent/README | 17 | ||||
-rw-r--r-- | src/bin/pgevent/pgmsgevent.h | 2 | ||||
-rw-r--r-- | src/bin/pgevent/pgmsgevent.mc | 2 |
4 files changed, 9 insertions, 12 deletions
diff --git a/src/bin/pgevent/MSG00001.bin b/src/bin/pgevent/MSG00001.bin Binary files differindex 30682fb2534..6ac08e5dc69 100644 --- a/src/bin/pgevent/MSG00001.bin +++ b/src/bin/pgevent/MSG00001.bin diff --git a/src/bin/pgevent/README b/src/bin/pgevent/README index d13f3cc18e9..f6a01a619d3 100644 --- a/src/bin/pgevent/README +++ b/src/bin/pgevent/README @@ -1,18 +1,15 @@ -The files attached with this mail have to be stored in pgevent directory. -MSG000001.bin is a bin files, result of Microsoft MC compiler. MC compiler +MSG000001.bin is a binary file, result of Microsoft MC compiler. MC compiler can be downloaded for free with MS Core SDK but it is not included with MSYS -tools and I didn't find a alternative way to compile MC file. +tools and I didn't find an alternative way to compile MC file. -To summarize MC pgmsgevent.mc command generates pgmsgevent.h -pgmsgevent.rc and MSG00001.bin files. In MC file, we declare a string +To summarize: the command "MC pgmsgevent.mc" generates pgmsgevent.h, +pgmsgevent.rc, and MSG00001.bin files. In MC file, we declare a string with %s format, so we can write anything we want in the future without -need to change the definition of this string. +needing to change the definition of this string. To finish, because DllUnregisterServer and DllRegisterServer are system -defined entry point, we need to export these two functions with their names -without "decoration", so we cannot uses auto generated .def files without +defined entry points, we need to export these two functions with their names +without "decoration", so we cannot use auto generated .def files without handy modifications. Laurent Ballester - - diff --git a/src/bin/pgevent/pgmsgevent.h b/src/bin/pgevent/pgmsgevent.h index 3931e055dcf..fad729d3536 100644 --- a/src/bin/pgevent/pgmsgevent.h +++ b/src/bin/pgevent/pgmsgevent.h @@ -39,7 +39,7 @@ // // MessageText: // -// %1. +// %1 // #define PGWIN32_EVENTLOG_MSG 0x00000000L diff --git a/src/bin/pgevent/pgmsgevent.mc b/src/bin/pgevent/pgmsgevent.mc index b5aa370f7f5..5d16e3efb22 100644 --- a/src/bin/pgevent/pgmsgevent.mc +++ b/src/bin/pgevent/pgmsgevent.mc @@ -1,5 +1,5 @@ MessageId=0 SymbolicName=PGWIN32_EVENTLOG_MSG Language=English -%1. +%1 . |