© Copyright International Business Machines Corporation 2006. All rights reserved. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
이 릴리스 정보 파일에는 다음과 같은 WebSphereR Integration Developer 엔터프라이즈 발견 마법사의 제한사항, 알려진 문제점 및 임시 해결책에 대한 최신 정보가 들어 있습니다.
- 엔터프라이즈 서비스 발견
- 엔터프라이즈 데이터 발견
없음
현재 C 임포터가 익명의 구조체 선언을 처리하지 않습니다. 예를 들어, 다음 코드를 참조하십시오.
typedef struct {
char loanId[20];
double loanAmount;
char date[20];
struct {
char taxPayerId[10];
char firstname[20];
char lastname[20];
char email[50];
} Customer[1];
} LoanInfo;이전 코드가 현재 가져오기를 수행하지 않습니다. 임시 해결책은 이름 지정된 구조체로서 익명의 구조체 선언을 외부에 두도록 선언을 수정하는 것입니다. 다음 선언은 동등하며 올바르게 가져오기됩니다.
typedef struct {
char taxPayerId[10];
char firstname[20];
char lastname[20];
char email[50];
} Taxpayer;
typedef struct {
char loanId[20];
double loanAmount;
char date[20];
Taxpayer Customer[1];
} LoanInfo;