1

重複の可能性:
c++ win32: ウィンドウの色を元に戻すには?

WNDCLASSのストックHBRUSHは使いたくない

これが私のWNDCLASSです:

 WNDCLASS     wndclass ;

 wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
 wndclass.lpfnWndProc   = WndProc ;
 wndclass.cbClsExtra    = 0 ;
 wndclass.cbWndExtra    = 0 ;
 wndclass.hInstance     = hInstance ;
 wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
 wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
 wndclass.hbrBackground = (HBRUSH) GetStockObject (BLACK_BRUSH) ;
 wndclass.lpszMenuName  = NULL ;
 wndclass.lpszClassName = szAppName ;

hbrBackground メンバーを 16 進数値 #cfdf9b にしたい

wndclass.hbrBackground = (HBRUSH) GetStockObject (#cfdf9b);

これでエラーが発生します

error C2014: preprocessor command must start as first nonwhite space warning C4047: 'function': 'int' は間接レベルが 'LPCSTR' と異なります helloworldwinapi.c(21): 警告 C4024: 'GetStockObject': 正式な型と実際の型が異なりますパラメータ 1 エラー C2143: 構文エラー: ';' の前に ')' がありません

4

0 に答える 0