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

Post Reply
User avatar
Baxajaun
Posts: 853
Joined: Wed Oct 19, 2005 2:17 pm
Location: Gatika. Bizkaia

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

Post 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
Carlos Mora
Posts: 988
Joined: Thu Nov 24, 2005 3:01 pm
Location: Madrid, España

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

Post by Carlos Mora »

:wink: Gracias!
Saludos
Carlos Mora
http://harbouradvisor.blogspot.com/
StackOverflow http://stackoverflow.com/users/549761/carlos-mora
“If you think education is expensive, try ignorance"
User avatar
Rick Lipkin
Posts: 2397
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

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

Post 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
User avatar
Baxajaun
Posts: 853
Joined: Wed Oct 19, 2005 2:17 pm
Location: Gatika. Bizkaia

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

Post by Baxajaun »

Hi Rick,

of course, you are right !!!

Thanks.

Regards
Post Reply