cannot convert parameter 1 from 'char *' to 'LPCWSTR'

前端 未结 5 909
北海茫月
北海茫月 2020-12-15 06:45

Im trying to load a BMP file

AUX_RGBImageRec *LoadBMP(char *Filename)  // Loads A Bitmap Image
{
    FILE *File=NULL;                      // File Handle

           


        
5条回答
  •  北海茫月
    2020-12-15 06:53

    Convert the character array to a LPCWSTR. You can see this in the 2nd guys post here

提交回复
热议问题