Subversion Repositories filter_foundry

Rev

Rev 439 | Rev 479 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 439 Rev 444
Line 23... Line 23...
23
#ifndef _MSC_VER
23
#ifndef _MSC_VER
24
        // probably MinGW gcc
24
        // probably MinGW gcc
25
        #include <stdint.h> // for intptr_t req'd by CS4 SDK
25
        #include <stdint.h> // for intptr_t req'd by CS4 SDK
26
#endif
26
#endif
27
 
27
 
-
 
28
// Avoid loading FSSpec in PITypes.h !
-
 
29
#define _FSSPEC_        1
-
 
30
typedef struct
-
 
31
{
-
 
32
        TCHAR szName[MAX_PATH+1];
-
 
33
} FSSpec;
-
 
34
 
28
#include "PITypes.h"
35
#include "PITypes.h"
29
 
36
 
30
typedef int16 ScriptCode;
37
typedef int16 ScriptCode;
31
 
38
 
32
typedef struct StandardFileReply {
39
typedef struct StandardFileReply {
Line 64... Line 71...
64
 
71
 
65
enum{ ok = 1,cancel = 2 };
72
enum{ ok = 1,cancel = 2 };
66
 
73
 
67
ULONGLONG _GetTickCount64();
74
ULONGLONG _GetTickCount64();
68
 
75
 
69
HANDLE _BeginUpdateResource/*A*/(
76
HANDLE _BeginUpdateResource(
70
        LPCSTR pFileName,
77
        LPCTSTR pFileName,
71
        BOOL   bDeleteExistingResources
78
        BOOL   bDeleteExistingResources
72
);
79
);
73
 
80
 
74
BOOL _EndUpdateResource/*A*/(
81
BOOL _EndUpdateResource(
75
        HANDLE hUpdate,
82
        HANDLE hUpdate,
76
        BOOL   fDiscard
83
        BOOL   fDiscard
77
);
84
);
78
 
85
 
79
BOOL _UpdateResource/*A*/(
86
BOOL _UpdateResource(
80
        HANDLE hUpdate,
87
        HANDLE hUpdate,
81
        LPCSTR lpType,
88
        LPCTSTR lpType,
82
        LPCSTR lpName,
89
        LPCTSTR lpName,
83
        WORD   wLanguage,
90
        WORD   wLanguage,
84
        LPVOID lpData,
91
        LPVOID lpData,
85
        DWORD  cb
92
        DWORD  cb
86
);
93
);
87
 
94