Thread: How can I implement a Win32 C-Language function?

How can I implement a Win32 C-Language function?

From
"maurizio.merli@libero.it"
Date:
How can I implement a Win32 C-Language function?


Re: How can I implement a Win32 C-Language function?

From
"Merlin Moncure"
Date:
Maurizio wrote:
> How can I implement a Win32 C-Language function?

Yes!  MinGW includes the win32 API.  Just include windows.h from your
source file...also make sure you are familiar with the peculiarities of
the C calling convention for postgresql.

The easiest way to get started is to browse through the contrib folder
and find an already written C function.  Just copy it, add windows.h,
and put in your own code.

Merlin