The MASM Forum Archive 2004 to 2012

Specialised Projects => Pelle's Macro Assembler Development => Topic started by: Vortex on April 22, 2012, 06:14:51 PM

Title: POH2INC converter
Post by: Vortex on April 22, 2012, 06:14:51 PM
With thanks to Pelle, the new POH2INC command-line tool converts C to assembler include files.

Here is a quick example.

test.h :


extern char * __stdcall SearchNullorCRorQuote(char *str);
extern char * __stdcall SearchQuoteOrNull(char *str);
extern char* __stdcall GetFilePath(char *str,char *str2);
extern void __stdcall szCatStr(char *str,char *str2);
extern char * __stdcall AnalyzeFunc(char *str);
extern int __stdcall NumbOfParams(char *str);
extern int __stdcall szCopy(char *str,char *str1);
extern int __stdcall WriteFileToDisc(char *str,char *str2,int size);
extern char* __stdcall GetFileExtension(char *str);
extern int  __stdcall szCmp(char *str,char *str2);
extern int __cdecl wsp(char *str,char *str1,...);
extern void __stdcall StdOut(char *str);


poh2inc.exe test.h

test.inc :


SearchNullorCRorQuote PROTO STDCALL str:PTR BYTE
SearchQuoteOrNull PROTO STDCALL str:PTR BYTE
GetFilePath PROTO STDCALL str:PTR BYTE, str2:PTR BYTE
szCatStr PROTO STDCALL str:PTR BYTE, str2:PTR BYTE
AnalyzeFunc PROTO STDCALL str:PTR BYTE
NumbOfParams PROTO STDCALL str:PTR BYTE
szCopy PROTO STDCALL str:PTR BYTE, str1:PTR BYTE
WriteFileToDisc PROTO STDCALL str:PTR BYTE, str2:PTR BYTE, size:SDWORD
GetFileExtension PROTO STDCALL str:PTR BYTE
szCmp PROTO STDCALL str:PTR BYTE, str2:PTR BYTE
wsp PROTO CDECL str:PTR BYTE, str1:PTR BYTE, :VARARG
StdOut PROTO STDCALL str:PTR BYTE

Title: Re: POH2INC converter
Post by: dedndave on April 23, 2012, 01:33:05 AM
very cool   :U

although, i have to wonder how it handles some of the hard stuff, like enumerations
Title: Re: POH2INC converter
Post by: Vortex on April 23, 2012, 08:19:41 AM
Hi Dave,

Reading Pelles C help, POH2INC reference [7.00] :

QuotePelles H to INC converter is used for converting C to assembler include files. Note that there is almost never a "perfect" conversion. POH2INC will process each file in isolation, and many files depend on typedefs and macros from other files. Also, many include files hide part of the C syntax in macros making the job for POH2INC much harder.