EnglishРусский  

   ..

   vm.c

   vm.h

   vm-a.h

   vmload.c

   vmload.h

   vmres.c

   vmres.h

   vmrun.c

   vmrun.h

   vmrun-a.c

   vmtype.c

   vmtype.h

Данный проект закрыт! Создан новый скриптовый язык с тем же именем. Всё доступно на GitHub.
Также попробуйте нашу open source кроссплатформенную программу для создания и управления скриптами.

Реклама

Инсталлятор CreateInstall
Бесплатные и коммерческие инсталляторы

source\src\vm\vmres.h
 1 /******************************************************************************
 2 *
 3 * Copyright (C) 2006, The Gentee Group. All rights reserved. 
 4 * This file is part of the Gentee open source project - http://www.gentee.com. 
 5 * 
 6 * THIS FILE IS PROVIDED UNDER THE TERMS OF THE GENTEE LICENSE ("AGREEMENT"). 
 7 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE CONSTITUTES RECIPIENTS 
 8 * ACCEPTANCE OF THE AGREEMENT.
 9 *
10 * ID: vmres 18.10.06 0.0.A.
11 *
12 * Author: Alexey Krivonogov ( gentee )
13 *
14 * Summary: Resources
15 * 
16 ******************************************************************************/
17 
18 #ifndef _VMRES_
19 #define _VMRES_
20 
21    #ifdef __cplusplus               
22       extern "C" {                 
23    #endif // __cplusplus      
24 
25 #include "vm.h"
26 
27 /*-----------------------------------------------------------------------------
28 *
29 * ID: vmres 19.10.06 0.0.A.
30 * 
31 * Summary: 
32 *  
33 -----------------------------------------------------------------------------*/
34 /*typedef struct 
35 {
36    uint    type;   // The type of resource
37    union
38    {
39       buf  vbuf;   // buf
40       str  vstr;   // str
41    };
42 } vmres, * pvmres;*/
43 
44 uint  STDCALL  vmres_addstr( pubyte ptr );
45 pstr  STDCALL  vmres_getstr( uint index );
46 
47 //--------------------------------------------------------------------------
48 
49 
50    #ifdef __cplusplus              
51       }                            
52    #endif // __cplusplus
53 
54 #endif // _VMRES_
55 
56 
Редактировать