Skip to content

Instantly share code, notes, and snippets.

@kumatti1
Created February 1, 2012 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kumatti1/1714757 to your computer and use it in GitHub Desktop.
Save kumatti1/1714757 to your computer and use it in GitHub Desktop.
TaskDialogの定数確認
#include <windows.h>
#include <Commctrl.h>
#include <stdio.h>
void main()
{
WCHAR tmp[50];
swprintf(tmp,50,L"%d",TD_INFORMATION_ICON );
MessageBoxW(nullptr, tmp, nullptr, MB_OK);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment