You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
325 B
19 lines
325 B
/*
|
|
* i n i t . h
|
|
*
|
|
* Purpose:
|
|
* global init code for Athena
|
|
*
|
|
* Copyright (C) Microsoft Corp. 1993, 1994.
|
|
*/
|
|
|
|
#ifndef INIT_H
|
|
#define INIT_H
|
|
|
|
BOOL FCommonViewInit();
|
|
HRESULT HrMailInit(HWND hwnd);
|
|
BOOL Initialize_RunDLL(BOOL fMail);
|
|
void Uninitialize_RunDLL();
|
|
void DllDeInit();
|
|
|
|
#endif //INIT_H
|