#include <SDKParticules.h>
Membres publics | |
CSDKParticulesApp () | |
virtual BOOL | InitInstance () |
|
|
|
Définition à la ligne 35 du fichier SDKParticules.cpp. Références FALSE.
00037 { 00038 CWinApp::InitInstance(); 00039 00040 AfxEnableControlContainer(); 00041 00042 00043 CSDKParticulesDlg dlg; 00044 m_pMainWnd = &dlg; 00045 INT_PTR nResponse = dlg.DoModal(); 00046 if (nResponse == IDOK) 00047 { 00048 // TODO: Place code here to handle when the dialog is 00049 // dismissed with OK 00050 } 00051 else if (nResponse == IDCANCEL) 00052 { 00053 // TODO: Place code here to handle when the dialog is 00054 // dismissed with Cancel 00055 } 00056 00057 // Since the dialog has been closed, return FALSE so that we exit the 00058 // application, rather than start the application's message pump. 00059 return FALSE; |