You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/src/bin/pgevent
Tom Lane a7143b3088 Fix some makefiles that fail to yield good results from 'make -qp'. 20 years ago
..
MSG00001.bin
Makefile Fix some makefiles that fail to yield good results from 'make -qp'. 20 years ago
README
pgevent.c Standard pgindent run for 8.1. 21 years ago
pgevent.def
pgmsgevent.h Add CVS tag lines to files that were lacking them. 20 years ago
pgmsgevent.mc
pgmsgevent.rc Add Win32 version info to client binaries. 22 years ago

README

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 an alternative way to compile MC file.

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
needing to change the definition of this string.

To finish, because DllUnregisterServer and DllRegisterServer are system
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