Re: call a proc from c
fire 3: (1) invalid command name "label"
that's what i got with:
Tcl_Interp *interp = Tcl_CreateInterp();
Tcl_EvalFile(interp, "/Users/nico/external-test/tclvar.tcl");
Tcl_Eval(interp, "package require Tk");
char text[] = "fire 3";
int rc = Tcl_Eval(interp, text);
if (rc!=TCL_OK) { fprintf(stderr,"%s: (%d)
%s\n",text,rc,Tcl_GetStringResult(interp));
}
.
Relevant Pages
- Re: SMACK netfilter smacklabel socket match
... Processes cannot be assigned the internet label. ... struct netlbl_audit *audit_info) ... int ret_val; ... * How communications on this socket are treated. ... (Linux-Kernel) - TVM_GETITEM does not return unicode label
... When I am trying to get an item's label using TVM_GETITEM API message, ... private static extern int SendMessage(IntPtr hWnd, int wMsg, int wParam, int ... public int hItem; ... private const int TV_FIRST = 0x1100; ... (microsoft.public.dotnet.languages.csharp) - Re: REFERENCES REVEALED
... > int main ... that the same is not true of pointers. ... address of that object with that label. ... It's good that you have something in mind that gives you a better ... (comp.lang.cpp) - Re: row count in inherited GridView control
... protected override void InitializePager(GridViewRow row, int columnSpan, ... // add the new label control with the new page info ... int lastPageRemainder = (rowCount % PageSize); ... // if you're on the last page the currentPageLastRow ... (microsoft.public.dotnet.framework.aspnet.webcontrols) - Graphs disappear when I minimize/maximize my frame
... {private int width; ... Bar bar1 = initBar; ... public void setBar1(String label, int height, Color c) ... (comp.lang.java.help) |
|