Displaying 3 results from an estimated 3 matches for "bmpheader".
2008 Aug 19
0
[LLVMdev] Please help with LLVM C++ integration
On Aug 19, 2008, at 13:36, kirill havok wrote:
> I got very interested in LLVM project, and I decided to start
> writing my own scripting language based on it. By studying the
> documentation, I could not find how to call external function,
> written in C. That is, I have a set of functions written in C/C++, I
> generate code, using LLVM C++ interface, how can I call(or
2008 Aug 19
5
[LLVMdev] Please help with LLVM C++ integration
Hello,
I got very interested in LLVM project, and I decided to start writing
my own scripting language based on it. By studying the documentation,
I could not find how to call external function, written in C. That is,
I have a set of functions written in C/C++, I generate code, using
LLVM C++ interface, how can I call(or register in machine in run-time)
my external functions? Maybe I just missed
2003 Sep 30
0
VB Code to convert BMP to LSS for splash screens
...d PhotoShop are good for re-palletizing and dithering.
Paul Shebanow
pshebanow at iqcorp.com
--- Begin Code ---
Type RGBColor4
cBlue As Byte
cGreen As Byte
cRed As Byte
cReserved As Byte
End Type
Type RGBColor3
cRed As Byte
cGreen As Byte
cBlue As Byte
End Type
Type bmpHeader
fileType As Integer
fileSize As Long
fileReserved1 As Integer
fileReserved2 As Integer
fileOffsetBits As Long
iSize As Long
iWidth As Long
iHeight As Long
iPlanes As Integer
iBitCount As Integer
iCompression As Long
iSizeImage As Long
iXPelsPerMet...