GetCodeForInitInstance
Récupère le code spécifié pour InitInstance.
function GetCodeForInitInstance(
nLineStart,
nLineEnd
);
Paramètres
nLineStart
Numéro de ligne à base zéro correspondant au début de la fonction.nLineEnd
Numéro de ligne à base zéro correspondant à la fin de la fonction.
Valeur de retour
Chaîne contenant le code nécessaire à l'initialisation de l'instance de l'Assistant.
Notes
Appelez cette fonction membre pour récupérer le code nécessaire à l'initialisation de l'instance de l'Assistant.Les numéros de ligne sont les suivants :
le numéro de ligne ; |
Code de InitInstance |
---|---|
0 |
CWinApp::InitInstance(); |
1 |
return TRUE; |
2 |
AfxOleInit(); |
3 |
// Parse command line for standard shell commands, DDE, file open |
4 |
CCommandLineInfo cmdInfo; |
5 |
ParseCommandLine(cmdInfo); |
6 |
// App was launched with /Embedding or /Automation switch. |
7 |
// Run app as automation server. |
8 |
if (cmdInfo.m_bRunEmbedded || cmdInfo.m_bRunAutomated) |
9 |
{ |
10 |
\t// Register class factories via CoRegisterClassObject(). |
11 |
\tif (FAILED(_AtlModule.RegisterClassObjects(CLSCTX_LOCAL_SERVER, REGCLS_MULTIPLEUSE))) |
12 |
\t\treturn FALSE; |
13 |
\t// Don't show the main window |
14 |
\treturn TRUE; |
15 |
} |
16 |
// App was launched with /Unregserver or /Unregister switch. |
17 |
if (cmdInfo.m_nShellCommand == CCommandLineInfo::AppUnregister) |
18 |
{ |
19 |
\t_AtlModule.UpdateRegistryAppId(FALSE); |
20 |
\t_AtlModule.UnregisterServer(TRUE); |
21 |
\treturn FALSE; |
22 |
} |
23 |
// App was launched with /Register or /Regserver switch. |
24 |
if (cmdInfo.m_nShellCommand == CCommandLineInfo::AppRegister) |
25 |
{ |
26 |
\t_AtlModule.UpdateRegistryAppId(TRUE); |
27 |
\t_AtlModule.RegisterServer(TRUE); |
28 |
\treturn FALSE; |
29 |
} |
Pour chacune des lignes retournées, GetCodeForInitInstance ajoute une tabulation à gauche (\t) et une paire de caractères « CR-LF » (retour chariot – retour ligne) à droite (\r\n).
Exemple
// Get the lines numbered 0 through 2 above
GetCodeForInitInstance(0, 2)
// returns the following string
// "\tCWinApp::InitInstance();\r\n\treturn TRUE;\r\n\tAfxOleInit();\r\n"
Voir aussi
Tâches
Création d'un Assistant personnalisé
Référence
Concepts
Personnalisation des Assistants C++ à l'aide des fonctions JScript classiques