- Code: Select all Expand view
HB_FUNC( PRT_PRINTBITMAP )
{
if( printer == NULL )
{
printer = new CPrinter;
}
// printer->Prt_PrintBitmap( hb_parni(1) );
//printer->Prt_PrintBitmap((LPCTSTR) hb_parc(1));
printer->Prt_PrintBitmap(_T("../Windows/b.bmp"));
}
Como hago para pasarlo como parametro desde mi funcion?
Prt_PrintBitmap("miarchivo.bmp")
O lo que sería mucho mejor aun, como puedo hacer para imprimir un bmp que tengo en mi .RC
Gracias.