version 1.1.1.1, 2012/02/21 16:42:02
|
version 1.1.1.2, 2012/10/09 09:13:23
|
Line 1
|
Line 1
|
/* |
/* |
* Copyright (C) 2008-2010 Daisuke Aoyama <aoyama@peach.ne.jp>. | * Copyright (C) 2008-2012 Daisuke Aoyama <aoyama@peach.ne.jp>. |
* All rights reserved. |
* All rights reserved. |
* |
* |
* Redistribution and use in source and binary forms, with or without |
* Redistribution and use in source and binary forms, with or without |
Line 34 typedef struct istgt_queue_t {
|
Line 34 typedef struct istgt_queue_t {
|
struct istgt_queue_t *prev; |
struct istgt_queue_t *prev; |
struct istgt_queue_t *next; |
struct istgt_queue_t *next; |
void *elem; |
void *elem; |
|
int num; |
} ISTGT_QUEUE; |
} ISTGT_QUEUE; |
typedef ISTGT_QUEUE *ISTGT_QUEUE_Ptr; |
typedef ISTGT_QUEUE *ISTGT_QUEUE_Ptr; |
|
|