CreateFont関数を使って再現できました。
注意としてはWindows NT/2000/XP/Vistaしか対応していません。
#uselib "gdi32"
#cfunc CreateFont "CreateFontA" int,int,int,int,int,int,int,int,int,int,int,int,int,str
#func DeleteObject "DeleteObject" int
#func SelectObject "SelectObject" int,int
#func SetGraphicsMode "SetGraphicsMode" int,int
SetGraphicsMode hdc,2 ;グラフィックスモードをGM_ADVANCEDに変更
a = -100 ;角度(1/10度単位)
s = 20 ;フォントサイズ
f = "MS ゴシック" ;フォント名
hFont = CreateFont(s,0,0,a,500,0,0,0,128,0,0,0,0,f) ;フォント作成
SelectObject hdc,hFont
mes "abcdefghijklmnopqrstuvwxyz"
DeleteObject hFont