blob: 675b328675cc78c6baa35a146f1f37def9845018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* -------------------------------------------
Copyright ZKA Web Services Co
FILE: XIDL.cxx
PURPOSE: XPCOM IDL COMPILER.
------------------------------------------- */
#include <ToolchainKit/NFC/ErrorID.h>
//! Assembler Kit
#include <ToolchainKit/AAL/Asm.h>
//! Preferred Executable Format
#include <ToolchainKit/NFC/PEF.h>
#include <ToolchainKit/UUID.h>
//! Dist version
#include <ToolchainKit/Version.h>
//! Advanced Executable Object Format
#include <ToolchainKit/NFC/AE.h>
/***
@brief IDL compiler maih.
*/
TOOLCHAINKIT_MODULE(ZKAIdlMain)
{
return 0;
}
|