GPGraphic.h C# conversion

A

aaron.radich

I'm trying to convert some C code to C#. I've found that I need to
include a call to GpPaletteEntryChange, which I think is defined in
#include "gpgraphic.h". Can someone tell me where I can find the code
for the GpPaletteEntryChange method? I think it looks like the
following, but don't know what the code is?

private int GpPaletteEntryChange(int pal_offset, int entry_num, ref
PALETTEENTRY pal_entry, int flag)
{
// need to put code here!
return 0;
}

Aaron
 
N

Nicholas Paldino [.NET/C# MVP]

Aaron,

That depends on whether or not the library that you are using is open
source. This isn't a Windows API function (and even if it was, you wouldn't
have access to the source).

Why not check to see if the source is available from the same place you
got the library?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top