View Issue Details

IDProjectCategoryView StatusLast Update
0000106Ecere SDKcompilerpublic2012-03-29 07:50
Reporterorilab Assigned Tojerome  
PriorityimmediateSeveritymajorReproducibilityhave not tried
Status closedResolutionno change required 
Summary0000106: can't display chinese
Descriptioncan't display chinese
TagsNo tags attached.

Relationships

child of 0000433 closed previously resolved issues (draft 1 of 0.44 and earlier) 

Activities

2008-07-28 15:17

 

linkqueue.h (872 bytes)   
/*
 * ��ߣ�antigloss
 * ����޸ģ�05-9-7 18:20
 * ���ϵ� C/C++ ��׼���
 *    cpp.ga-la.com
 */

#ifndef LINKQUEUE_H
#define LINKQUEUE_H

typedef char ElemType;

typedef struct Qnode {
	ElemType data;
	struct Qnode *next;
} Qnode, *Qptr; /* ��� */

typedef struct {
	Qptr front, rear; /* ��ͷָ�룬��βָ�� */
} LinkQueue;

void ClearQueue(LinkQueue *);        /* ��Ϊ�ն�� */
int DeQueue(LinkQueue *);            /* ���ӡ��ɹ����� 1 ��ʧ�ܷ��� 0 */
void Destroy(LinkQueue *);           /* ��ٶ�� */
int EnQueue(LinkQueue *, ElemType);  /* �����β���ɹ����� 1 ��ʧ�ܷ��� 0 */
int GetHead(LinkQueue *, ElemType *);/* ��в����򷵻ض��ͷԪ�أ������� 1�����򷵻� 0 */
int InitQueue(LinkQueue *);          /* �����ն�С��ɹ����� 1 ��ʧ�ܷ��� 0 */
int QueueEmpty(LinkQueue *);         /* ����Ϊ�ն�У��򷵻� 1 �����򷵻� 0 */

#endif
linkqueue.h (872 bytes)   

2008-08-15 21:49

 

utf8-linkqueue.h (958 bytes)

jerome

2008-08-15 21:50

administrator   ~0000059

Hi orilab, sorry it took so long to get back to you on this issue...
Your file is encoded using Big5 encoding, whereas Ecere works with UTF-8.

I converted your file to UTF-8 and attached the new version.
Converting to UTF-8 is probably as simple as copy pasting from a text editor supporting Big5 into the Ecere IDE, which automatically encodes as UTF-8.

Regards,

Jerome

Issue History

Date Modified Username Field Change
2008-07-28 15:17 orilab New Issue
2008-07-28 15:17 orilab File Added: linkqueue.h
2008-08-15 16:05 jerome Status new => assigned
2008-08-15 16:05 jerome Assigned To => jerome
2008-08-15 16:05 jerome Priority normal => immediate
2008-08-15 16:05 jerome Severity minor => major
2008-08-15 21:49 jerome File Added: utf8-linkqueue.h
2008-08-15 21:50 jerome Note Added: 0000059
2008-08-15 21:51 jerome Status assigned => resolved
2008-08-15 21:51 jerome Resolution open => no change required
2009-05-03 03:43 jerome Status resolved => closed
2010-07-25 21:32 redj Relationship added child of 0000433
2012-03-29 07:50 redj Category => eC Compiling Tools
2012-03-29 07:50 redj Project @2@ => Ecere SDK