23 lines
387 B
C
23 lines
387 B
C
//
|
|
// Private.h
|
|
//
|
|
// Contents: Private header for korimx project.
|
|
//
|
|
|
|
#if !defined (__PRIVATE_H__INCLUDED_)
|
|
#define __PRIVATE_H__INCLUDED_
|
|
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <msi.h>
|
|
#include <msiquery.h>
|
|
|
|
// Safe String
|
|
#define STRSAFE_NO_DEPRECATE
|
|
#include "strsafe.h"
|
|
|
|
#define fTrue 1
|
|
#define fFalse 0
|
|
|
|
#endif // __PRIVATE_H__INCLUDED_
|