test.h
----------------------------------------------
type def struct _TEST
{
int i;
char temp[10];
} TEST;
test.pc
------------------------------------------------------
#include
#include "test.h"
EXEC SQL BEGIN DECLARE SECTION;
TEST stTest;
EXEC SQL END DECLARE SECTION;
int main(void)
{
return 0;
}
이걸 컴파일하면
6 줄,