LoginSignup
0
0

More than 5 years have passed since last update.

Windows API基本型

Posted at

Win32型

BOOL
BOOLEAN
CHAR ...

ポインタ型
  • 型識別子の先頭にPまたはLPを指定するとポインタ型になるという規則がある
  • L(long) P(pointer)であるがLは16ビット時代からの名残なのでLPの接頭辞とPの接頭辞の型は同じ

文字列型

TCHAR(UNICODEが定義されていればWCHAR、そうでなければCHAR)

文字列型のポインタ

LPSTR, PSTR(NULL で終わるマルチバイト文字列へのポインタ)
LPWSTR,PCWSTR(NULL で終わるワイド文字列へのポインタ)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0