I have an app that allows for plugins. The SDK distributed is for C++, but I'd like to roll my own with PB. One function the main app calls uses a hDC as one of it's parameters
void PlugTrans(HDC CurPage, HDC NextPage)
how would I write this with PB?
thanks
How to pass hDC from C++ to PureBasic DLL
Re: How to pass hDC from C++ to PureBasic DLL
ProcedureDLL PlugTrans(CurPage.l, NextPage.l) 
Good programmers don't comment their code. It was hard to write, should be hard to read.

