Page 1 of 1

ResEdit - Error: RLINK32: Unsupported 16bit resource in file

Posted: Tue Sep 15, 2015 9:10 am
by Baxajaun
Hi / Hola,

i had this error message / yo tuve este mensaje de error.

And i fixed it with / Y lo solucione con:

Adding this lines to .rc file / añadiendo estas líneas al fichero .rc

#include "C:\Develop\Borland\bcc7\include\windows\sdk\windows.h"
#include "C:\Develop\Borland\bcc7\include\windows\sdk\commctrl.h"
#include "C:\Develop\Borland\bcc7\include\windows\sdk\richedit.h"
#include "resource.h"

Regards / Saludos

Re: ResEdit - Error: RLINK32: Unsupported 16bit resource in file

Posted: Tue Sep 15, 2015 10:55 am
by Carlos Mora
:wink: Gracias!

Re: ResEdit - Error: RLINK32: Unsupported 16bit resource in file

Posted: Tue Sep 15, 2015 11:45 am
by Rick Lipkin
To All

You can configure Resedit to look for your include path .. Preferences, General, Include Paths .. that way you do not have to hard code the the path of resource Includes ..

Code: Select all

#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include "resource.h"
 
Rick Lipkin

Image

Re: ResEdit - Error: RLINK32: Unsupported 16bit resource in file

Posted: Tue Sep 15, 2015 12:25 pm
by Baxajaun
Hi Rick,

of course, you are right !!!

Thanks.

Regards