B
bbcock
Unregistered / Unconfirmed
GUEST, unregistred user!
vc的结构如下:
typedef struct _tex
{
unsigned int id;
float x;
float y;
struct _tex* lppre;
struct _tex* lpnxt;
}
tex,*lptex
vc里面定义指针的没搞懂,怎么变成delphi的呢?
typedef struct _tex
{
unsigned int id;
float x;
float y;
struct _tex* lppre;
struct _tex* lpnxt;
}
tex,*lptex
vc里面定义指针的没搞懂,怎么变成delphi的呢?