繁星 发表于 2015-12-10 17:43:23

[已解决]如何替换字符。 图片附件如何创建一个STARTUPINFO结构体

本帖最后由 繁星 于 2015-12-11 09:57 编辑

如题,求教DllStructCreate应该怎么写{:face (319):}typedef struct _STARTUPINFO {
DWORD cb;
LPTSTR lpReserved;
LPTSTR lpDesktop;
LPTSTR lpTitle;
DWORD dwX;
DWORD dwY;
DWORD dwXSize;
DWORD dwYSize;
DWORD dwXCountChars;
DWORD dwYCountChars;
DWORD dwFillAttribute;
DWORD dwFlags;
WORD wShowWindow;
WORD cbReserved2;
LPBYTE lpReserved2;
HANDLE hStdInput;
HANDLE hStdOutput;
HANDLE hStdError;
} STARTUPINFO,
*LPSTARTUPINFO;

gto250 发表于 2015-12-10 20:49:20

Global Const $tagSTARTUPINFO = "int Size;ptr Reserved1;ptr Desktop;ptr Title;int X;int Y;int XSize;int YSize;int XCountChars;" & _
"int YCountChars;int FillAttribute;int Flags;short ShowWindow;short Reserved2;ptr Reserved3;int StdInput;" & _
"int StdOutput;int StdError"

帮助文件里有

繁星 发表于 2015-12-11 09:55:55

回复 2# gto250


    果然有啊,原来在结构常量里边~{:face (394):}
页: [1]
查看完整版本: [已解决]如何替换字符。 图片附件如何创建一个STARTUPINFO结构体