mirror of https://github.com/lianthony/NT4.0
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.
37 lines
1000 B
37 lines
1000 B
/*****************************************************************************
|
|
*
|
|
* anno.h
|
|
*
|
|
* Copyright (C) Microsoft Corporation 1990.
|
|
* All Rights reserved.
|
|
*
|
|
******************************************************************************
|
|
*
|
|
* Annotation Manager API (Help 3.0)
|
|
* Include this file to access the annotation manager.
|
|
*
|
|
******************************************************************************
|
|
*
|
|
* Revision History:
|
|
* 03-Dec-1990 LeoN Pdb changes
|
|
*
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
*
|
|
* Defines
|
|
*
|
|
*****************************************************************************/
|
|
|
|
enum {
|
|
wAnnoUnchanged = 1,
|
|
wAnnoWrite,
|
|
wAnnoDelete,
|
|
wAnnoDeleteAll, // for update
|
|
wAnnoUpdate, // for update
|
|
wAnnoRename, // for update
|
|
};
|
|
|
|
BOOL STDCALL FVAHasAnnoQde(QDE, VA, OBJRG);
|
|
VOID STDCALL InitAnnoPdb(PDB);
|
|
VOID STDCALL FiniAnnoPdb(PDB);
|