View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0000106 | Ecere SDK | compiler | public | 2008-07-28 15:17 | 2012-03-29 07:50 |
| Reporter | orilab | Assigned To | jerome | ||
| Priority | immediate | Severity | major | Reproducibility | have not tried |
| Status | closed | Resolution | no change required | ||
| Summary | 0000106: can't display chinese | ||||
| Description | can't display chinese | ||||
| Tags | No tags attached. | ||||
| Attached Files | 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 | ||||
| child of | 0000433 | closed | previously resolved issues (draft 1 of 0.44 and earlier) |
|
|
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 |
| 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 |