Page 1 sur 1

Structure CREATESTRUCT

Publié : lun. 27/déc./2004 20:31
par Anonyme2
Définition MS

Code : Tout sélectionner

typedef struct tagCREATESTRUCT {
    LPVOID lpCreateParams;
    HINSTANCE hInstance;
    HMENU hMenu;
    HWND hwndParent;
    int cy;
    int cx;
    int y;
    int x;
    LONG style;
    LPCTSTR lpszName;
    LPCTSTR lpszClass;
    DWORD dwExStyle;
} CREATESTRUCT, *LPCREATESTRUCT;
et celle de PB

Code : Tout sélectionner

Structure CREATESTRUCT
  lpCreateParams.l
  hInstance.l
  hMenu.l
  hWndParent.l
  cy.l
  cx.l
  y.l
  x.l
  style.l
  lpszName.l
  lpszClass.l
  ExStyle.l
EndStructure

Le dernier membre est dwExStyle au lieu de ExStyle

Publié : dim. 15/mai/2005 21:43
par Fred
Corrigé.