Welcome, Guest. Please login or register.

Author Topic: Arghh.. getting errors in the jpeg.library includes with VBCC  (Read 3886 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline itix

  • Hero Member
  • *****
  • Join Date: Oct 2002
  • Posts: 2380
    • Show all replies
Re: Arghh.. getting errors in the jpeg.library includes with VBCC
« on: September 15, 2004, 12:17:38 AM »
Mmmh, I think your jpeg includes are not compatible with VBCC. They seem to be for SAS/C only.

Quote
>typedef __asm ULONG

Adding #define __asm in the begining of the file could help here...

Quote
>typedef __asm ULONG (*JPGD_HOOK_PROTO)( register __a0 void

Change "register __a0" to "__reg(a0)". Same for other similar instances...
My Amigas: A500, Mac Mini and PowerBook
 

Offline itix

  • Hero Member
  • *****
  • Join Date: Oct 2002
  • Posts: 2380
    • Show all replies
Re: Arghh.. getting errors in the jpeg.library includes with VBCC
« Reply #1 on: September 15, 2004, 10:05:52 AM »
Remove every __asm from jpeg includes then... then it should work.
My Amigas: A500, Mac Mini and PowerBook